2009. 6. 11.

캐리지 리턴 문자 없애기

vi
:%s/^M//g

find `pwd` -name "*.*" | xargs grep "^M"

find `pwd` -name "*.*" -exec perl -pi -e 's/^M//g' {} \; -print