Skip to content

Instantly share code, notes, and snippets.

@homleen
Created May 30, 2013 03:51
Show Gist options
  • Save homleen/5675623 to your computer and use it in GitHub Desktop.
Save homleen/5675623 to your computer and use it in GitHub Desktop.
批量转换XML,GB2312 => UTF8
find . -type f -name "*.xml" | while read name; do
echo $name
iconv -f GB2312 -t UTF-8 $name > ${name}.utf8
mv $name ${name}.gb2312
mv ${name}.utf8 $name
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment