Last active
November 28, 2016 01:34
-
-
Save brunoluiz/cf0f0609c5068e28b2250b7ac02ab5e3 to your computer and use it in GitHub Desktop.
Convert Windows encoding to UTF-8 on MAC/Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in *; do | |
iconv -f iso-8859-1 -t utf-8 $file > $file.new | |
mv $file.new $file | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment