페이지

2014년 4월 10일 목요일

search and replace in < vi >


Vi: Search and Replace

Change to normal mode with <ESC>.


  • Search (Wrapped around at end of file):
    •  Search STRING forward :   / STRING.
    •  Search STRING backward:   ? STRING.
      •  Repeat search:   n
      •  Repeat search in opposite direction:  N  (SHIFT-n)





  • Replace: Same as with sed, Replace OLD with NEW:
    • First occurrence on current line:      :s/OLD/NEW
    • Globally (all) on current line:        :s/OLD/NEW/g
    • Between two lines #,#:                 :#,#s/OLD/NEW/g
    • Every occurrence in file:              :%s/OLD/NEW/g








댓글 없음:

댓글 쓰기

image

image