Skip to content

Instantly share code, notes, and snippets.

@InFog
Last active September 29, 2017 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save InFog/d16dc78146965dd7203b11fe11d0cfb8 to your computer and use it in GitHub Desktop.
Save InFog/d16dc78146965dd7203b11fe11d0cfb8 to your computer and use it in GitHub Desktop.
#!/bin/bash
FILE="$1"
TMP_FILE="$FILE.tmp"
if [ -f "$FILE" ]; then
IS_ISO=$(file -I "$FILE" | grep 8859)
if [ -n "$IS_ISO" ]; then
iconv -f iso-8859-1 -t utf-8 "$FILE" > "$TMP_FILE"
mv "$TMP_FILE" "$FILE"
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment