# Control+right
"\eOc": forward-word
# Control+left
"\eOd": backward-word
Notice those are O's (the letter) not 0's (zeroes).
You may need to have this in your .bashrc
export INPUTRC=$HOME/.inputrc
Software, web, and programming tips: C++, Java, C, Linux, Windows, Cygwin, Firefox, Vim, WWW, RSS
# Control+right
"\eOc": forward-word
# Control+left
"\eOd": backward-word
export INPUTRC=$HOME/.inputrc
# get default system bindings
$include /etc/inputrc
# ignore case on tab complete
set completion-ignore-case On
# prefer visual bell
set prefer-visible-bell