EUCKrToUTF8변환
Clunix Wiki
우선 단일 파일 변환 스크립트를 다음과 같이 생성(iconv_it.sh)
#!/bin/sh tmpfile=iconv.$$ inputfile=$1 iconv -f euc-kr -t UTF-8 -o $tmpfile $inputfile cat $tmpfile > $inputfile rm $tmpfile
다음과 같이 find 수행
find -H -name '\.svn' -prune -o -name '*.css' -exec /tmp/iconv_it.sh {} \; -print