Sunday 15 April 2012

Use of text Editors in Linux

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
  1. command mode
  2. insert mode
  3. save and Exit Mode
  1. Command mode is again divided into 3 mode
  1. Cursor movement
  2. Copy, paste, delete, undo
  3. Text search

a)  Cursor movement:-

J           :           Down
K         :           UP
L          :           RIGHT
H         :           LEFT

b) 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

c)Text Search :-
                   /text
                   example
                  /then

2)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


 3) Save and Exit Mode:-

:q               :           Quiet
:q!              :           forcely quiet
:wq!           :           save and forcely quiet
:wq            :           save and exit




 
Thanks ,

1 comment: