Last active
August 29, 2015 14:03
-
-
Save masdeseiscaracteres/b1b19010ba0db157f2e4 to your computer and use it in GitHub Desktop.
Automatically detect the encoding of a file an convert it to UTF-8 (use with care)
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
#!/bin/bash | |
if [[ "$#" -ne 1 ]]; then | |
echo "Usage: ./toUTF8 <dir>" | |
exit 1 | |
fi | |
OUTPUT_ENC=UTF-8 | |
FOLDER=$1 | |
ICONV="iconv" | |
# Convert | |
find $1 -type f -name "*" | while read fn; do | |
cp ${fn} ${fn}.bak | |
INPUT_ENC=`file -b --mime-encoding ${fn}` | |
echo "Converting $fn from " $INPUT_ENC " to " $OUTPUT_ENC " ..." | |
$ICONV -f $INPUT_ENC -t $OUTPUT_ENC < ${fn}.bak > ${fn} | |
rm ${fn}.bak | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment