Skip to content

Instantly share code, notes, and snippets.

@imerr
Created December 21, 2014 18:52
Show Gist options
  • Save imerr/8e4db2d20acbdd51a6c2 to your computer and use it in GitHub Desktop.
Save imerr/8e4db2d20acbdd51a6c2 to your computer and use it in GitHub Desktop.
Mass convert files to utf8
find . -name '*.py' -exec mv "{}" "{}.old" \; -exec sh -c 'iconv -f windows-1252 -t utf-8 "{}.old" > "{}"' \; -exec rm "{}.old" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment