Linux: ksh
Blogs20112011-11-09
ksh: set -o vi
The Korn shell has the ability to utilize vi editor commands to edit commands in your history. If you are a Linux guy, you will never miss this attractive feature.
There are 2 ways to enable vi editing. In $HOME/.bashrc file, append either of the following:
set -o vi
# or:
export EDITOR=viThis will active the ksh attributes in command line.
Then you can use vi commands. Press escape to enter vi command mode then you have access to many vi commands. For example, k will move up through previous commands in the history, /tail will search for the most recent command containing the word tail and pressing n will find the next occurence of that search term.
Once you have found a command that you want to repeat, just press ENTER and it will be run again. You can edit the command with R to replace characters from your current position, x to delete the current character, i to insert characters before the current character, a append characters after the current character, and $ to move to the end of the command.
I am a Linux guy, to be fairly speaking, using vi, ksh command-line in Linux, is much better/high performance than frenquently ftp (switch between windows and linux server) for the web developing.
