Joue avec bash : cp ~/tex/part{2,3,4}.tex . : ça marche ! CTRL-R sous bash fait une recherche dans l'historique!

Pour utiliser les keybindings vi sous bash, set -o vi
puis ESC / pour chercher
ESC x pour enlever un caractère etc

Redirections :
stderr is 2>, < is stdin, 1> or > is stdout, and &> is everything

Raccourcis utiles de readline :
ESC f : forward one word
ESC b : back one word
CTRL a : to the beginning of line
CTRL e : to the end of line
CTRL d : delete current char
ESC d : delete current word
CTRL u : delete from beginnig of line
ESC k : delete to end of line
CTRL Y : retrieve last item deleted
ESC . : insert last word of previous command