2012년 8월 7일 화요일

iconv 를 이용한 인코딩 변경

단일 파일
iconv -f euc-kr -t utf-8 test.php > test.php


여러 파일
find . -name "*.html" -exec bash -c 'iconv -f euc-kr -t utf-8 "{}" > ./utf8/"{}"' \;