누가 정리해 놓은건지는 몰라도 정말 잘 정리 되어 있는것 같다.
Replace: Same as with sed, Replace OLD with NEW:
Vi: Search and Replace
Change to normal mode with <ESC>.
Search (Wraped 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
'개발자세상 > Shell 관련' 카테고리의 다른 글
Shell 에서 FTP uploading check (0) | 2013.03.21 |
---|---|
공용키 기반 인증 (0) | 2010.01.26 |
서로 다른 디렉토리의 전체 파일 diff 실행하는 script (0) | 2009.01.30 |
특정 이름의 file이 같은 파일 들인지 비교 (0) | 2008.12.08 |
"join" command (0) | 2008.11.21 |