Turn bash into vi style
so you are a big fan of vi/vim like me? And tired of using emacs style shell in your bash? Bash provides two modes for command line editing: emcas and vi. Emcas is the default style and you can turn it into vi mode with this one-liner:
set -o vi
Now you are in business to use your shell in the vi way :)