I've copied certain files from a Windows machine to a Linux machine.
All the files encoded with Windows-1252 need to be converted toUTF-8.
The files which are already in UTF-8 should not be changed.
I'm planning to use the recode
utility for that.How can I specify that the recode
utility should only convertwindows-1252 encoded files and not the UTF-8 files?
Example usage of recode:
recode windows-1252.. myfile.txt
This would convert myfile.txt
from windows-1252 to UTF-8.Before doing this, I would like to know that myfile.txt
is actuallywindows-1252 encoded and not UTF-8 encoded.
Otherwise, I believe this would corrupt the file.