Infos I didn't found that easily with Google and had to find out myself. Hereby given back to the net...
Fix Broken Text Encoding
Submitted by llando on Thu, 06/09/2011 - 13:01.
You have a text file with broken encoding? You want to strip it from all invalid characters?
Here is how to do it:
iconv -c -t ASCII input.txt
The result will be printed to stdout. The -c switch does the stripping. Using -t you can select every target encoding you like.
Post new comment