Skip to content

Instantly share code, notes, and snippets.

@munho
Created March 5, 2015 23:47
Show Gist options
  • Save munho/b31f05c203fe51f6e214 to your computer and use it in GitHub Desktop.
Save munho/b31f05c203fe51f6e214 to your computer and use it in GitHub Desktop.
cp949 -> utf8
find ./ -name \*.java -type f | \
(while read file; do \
iconv -f CP949 -t UTF-8 "$file" | sponge "$file"; \
done);
find ./ -name \*.c -type f | \
(while read file; do \
iconv -f CP949 -t UTF-8 "$file" | sponge "$file"; \
done);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment