Skip to content

Instantly share code, notes, and snippets.

@dsdstudio
Created February 11, 2016 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsdstudio/0c347b5356feff02ea7e to your computer and use it in GitHub Desktop.
Save dsdstudio/0c347b5356feff02ea7e to your computer and use it in GitHub Desktop.
iconv 로 euc_kr -> utf-8변환
for i in `find . -name *.java`; do iconv -c -f euc-kr -t utf-8 $i > $i.tmp && mv $i.tmp $i ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment