bash: Commands For Moving

1 
1 8.4.1 Commands For Moving
1 -------------------------
1 
1 'beginning-of-line (C-a)'
1      Move to the start of the current line.
1 
1 'end-of-line (C-e)'
1      Move to the end of the line.
1 
1 'forward-char (C-f)'
1      Move forward a character.
1 
1 'backward-char (C-b)'
1      Move back a character.
1 
1 'forward-word (M-f)'
1      Move forward to the end of the next word.  Words are composed of
1      letters and digits.
1 
1 'backward-word (M-b)'
1      Move back to the start of the current or previous word.  Words are
1      composed of letters and digits.
1 
1 'shell-forward-word ()'
1      Move forward to the end of the next word.  Words are delimited by
1      non-quoted shell metacharacters.
1 
1 'shell-backward-word ()'
1      Move back to the start of the current or previous word.  Words are
1      delimited by non-quoted shell metacharacters.
1 
1 'clear-screen (C-l)'
1      Clear the screen and redraw the current line, leaving the current
1      line at the top of the screen.
1 
1 'redraw-current-line ()'
1      Refresh the current line.  By default, this is unbound.
1