Skip to content

Instantly share code, notes, and snippets.

@tranch
Last active August 29, 2015 14:04
Show Gist options
  • Save tranch/a65d048911585a761551 to your computer and use it in GitHub Desktop.
Save tranch/a65d048911585a761551 to your computer and use it in GitHub Desktop.
编码转换
#!/bin/bash
for i in $(find -name '*.ext'); do
encoding=$(file -bi "$i" | sed -e 's/.*[ ]charset=//');
iconv -f $encoding -t UTF-8 -o "$i" "$i";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment