In bash, you can move to the beginning of the line with CTRL+A, and the end with CTRL+E. How can I move forward and backward by word?

link|improve this question
1  
man bash and then read the docs in the READLINE section. – Kaleb Pederson May 27 '10 at 20:44
feedback

migrated from stackoverflow.com May 27 '10 at 23:43

This question came from our site for professional and enthusiast programmers.

3 Answers

With emacs bindings:

Meta-B moves back a word and Meta-F moves forward a word.

Ctrl-B moved back a character and Ctrl-F moves forward a character.

So B vs F is backwards vs forward and Meta vs Ctrl is word vs character.

The exact mapping of Meta may vary between keyboards. Try holding down Alt while pressing the other key; if that doesn't work, press and release Esc and then press the other key.

link|improve this answer
feedback

use alt+b for backward and alt+f for forward movement by a word.

link|improve this answer
feedback

Put in ~/.inputrc:

# Ctrl+Left/Right to move by whole words.
"\e[1;5C": forward-word
"\e[1;5D": backward-word
# Same with Shift pressed.
"\e[1;6C": forward-word
"\e[1;6D": backward-word
link|improve this answer
feedback

Your Answer

 
or
required, but never shown