본문 바로가기
IT 기술/개발환경_유틸 관련 팁

vim tip

by 땅뚱 2010. 9. 20.
# vi fileformat 변경
:set ff={unix,dos,mac}
:help fileformat

# dos 개행 문자 삭제하기
:%s/^M//g

# 라인의 마지막에 있는 white space 문자 삭제
:%s/\s*$//g

# hex 값으로 보기
:%!xxd

# hex editor 에서 원래 대로 보기
:%!xxd -r