in reply to How to write out a Perl script and run it in as few keystrokes as possible.
I love being able to use vi commands from the bash prompt, and I think you will, too.from the bash prompt: set -o vi or to set this option to automatically load when you start your termin +al: cd ~ && echo 'set -o vi' >> .bashrc && echo "success\n"
|
|---|