Skip to content

Instantly share code, notes, and snippets.

@knowlet
Created March 27, 2015 04:39
Show Gist options
  • Save knowlet/cafa4682899b5b9a22d4 to your computer and use it in GitHub Desktop.
Save knowlet/cafa4682899b5b9a22d4 to your computer and use it in GitHub Desktop.
big5 to utf8
#!/usr/bin/env bash
for i in `find . -name "*.java"`
do
iconv -f BIG5 -t UTF-8 $i > $i.bak
mv "$i.bak" $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment