InterviewSolution
Saved Bookmarks
| 1. |
Which of the following commands of ex-mode is equivalent to ‘G’ command in command mode?(a) : .(b) : $(c) : %(d) :wI got this question in my homework.Origin of the question is Navigation in Vi Editor topic in division The Vi Editor of Unix |
|
Answer» RIGHT answer is (b) : $ Best EXPLANATION: ex-mode offers equivalent commands for moving between lines. ‘G’ COMMAND moves the cursor to end of the FILE which can also be achieved USING ‘: $’ command in ex-mode. |
|