'UNIX모드'에 해당되는 글 1건
- 2009.02.11 DOS모드의 파일을 UNIX 모드로 일괄 변경하기
2009. 2. 11. 16:39
DOS모드의 파일을 UNIX 모드로 일괄 변경하기
2009. 2. 11. 16:39 in Unix/Linux
[root@ihelpers cv]# cat dos2unix
#/bin/sh
find ../html -name "*.php3" -print -exec perl -p -i -e "s/^M//g" {} \;
find ../html -name "*.php" -print -exec perl -p -i -e "s/^M//g" {} \;
find ../html -name "*.html" -print -exec perl -p -i -e "s/^M//g" {} \;
find ../html -name "*.htm" -print -exec perl -p -i -e "s/^M//g" {} \;
^M 문자열은 CTRL+V+ENTER 로 입력한다.
[root@ihelpers cv]# ./dos2unix
...
출처 : http://www.ihelpers.co.kr/programming/tipntech.php?CMD=view&TYPE=7&KEY=&SC=S&&CC=&PAGE=1&IDX=584