The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 04-20-2007
blowtorch's Avatar
blowtorch blowtorch is offline Forum Advisor  
Supporter
  
 

Join Date: Dec 2004
Location: Singapore
Posts: 2,350
Check which shell you are using. Use 'echo $0' or 'echo $SHELL' commands for that. If your shell is sh, then the ESC+whatever is not supported. Run 'ksh -o vi' to get the functionality that you want. If the shell is ksh, then it isn't running in vi mode. Run 'set -o vi' to get it going.

Cheers