반응형
# 파일 하나 처리
iconv -c -f euc-kr -t utf-8 1.txt > 1..txt
# 여러 파일 처리
$ find . -type f -exec iconv -f euc-kr -t utf-8 "{}" -o path/to/destination/"{}" \;
ex)find . -type f -exec iconv -f euc-kr -t utf-8 "{}" -o ./"{}" \;
반응형
# 파일 하나 처리
iconv -c -f euc-kr -t utf-8 1.txt > 1..txt
# 여러 파일 처리
$ find . -type f -exec iconv -f euc-kr -t utf-8 "{}" -o path/to/destination/"{}" \;
ex)find . -type f -exec iconv -f euc-kr -t utf-8 "{}" -o ./"{}" \;