Skip to content

Instantly share code, notes, and snippets.

@frdmn
Last active August 29, 2015 14:11
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 frdmn/62cfef5eb9f7c4408440 to your computer and use it in GitHub Desktop.
Save frdmn/62cfef5eb9f7c4408440 to your computer and use it in GitHub Desktop.
convert text file to-utf8 bash function
function 2utf8(){
local tmp=$(mktemp)
iconv -f ISO-8859-1 -t UTF-8 $1 > $tmp
if [ -f $tmp ]; then
mv "$tmp" "$1"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment