-
Vi, vim Editor
Vi, vim Editor
Vi is the standard file editor for Unix and Vim is the standard file editor for Linux
For Red hat Linux vi and Vim both are same
There are three mode of vi editor
- command mode
- insert mode
- save and Exit Mode
- Command mode is again divided into 3 mode
- Cursor movement
- Copy, paste, delete, undo
- Text search
- Cursor Movement
J : Down
K : UP
L : RIGHT
H : LEFT
- Copy, paste delete, undo
dd : delete particular line
yy : copy particular line
u : Undo
p : paste
ndd : n is the number of line to be deleted
nyy : n is the number of line to be copied
- Text Search
/text
example
/then
- Insert Mode
Option I, insert, a ,o, O
i : insert mode start at the point where cursor is. Same is used with
insert option
a : insert mode start after one character
o : insert mode start after one line
O : insert mode start before one line
- Save and Exit
:q : Quiet
:q! : forcely quiet
:wq! : save and forcely quiet
:wq : save and exit
- command mode
0 comments: