» Linux » Examen sur Linux » Examen 201 : Advanced Administration » Section 5 » Question 13/23
13.You would like to temporarily change your command line editor to be vi. What command should you type to change it?
Answer: set -o vi

Explanation: The read line support in the bash shell defaults to emacs editing mode. You can easily switch that to vi mode by issuing the following command: set -o vi. This will last until you logoff. The next time you log on, the default editing mode will be used.

Reference: http://www.portico.org/index.php3?catList=26

« Question 12 Question 14 »