Convert a file to utf-8 charset
Date: 2009-08-28
Convert a iso-8859-1 charset file into a utf-8 charset file using standard Linux tools. The solution - using bash shell and using Linux - of course:iconv --from-code=ISO-8859-1 --to-code=UTF-8 iso.txt > utf.txt
