Possible Duplicate:
How can I convert multiple files to UTF-8 encoding using *nix command line tools?
Okay, now that I can detect the encoding, I know that my encoding is using charset=iso-8859-1 instead of utf. How can I convert this?
Okay, now that I can detect the encoding, I know that my encoding is using
| |||
|
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
iconv -f iso-8859-1 -t utf-8 < file > file.new | |||||||||||
feedback
|