Convert text to 7-bit ASCII from command-line - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T14:54:54Z http://stackoverflow.com/feeds/question/212745 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/212745/convert-text-to-7-bit-ascii-from-command-line 2 Convert text to 7-bit ASCII from command-line Alexander Gladysh 2008-10-17T15:54:14Z 2008-12-10T02:49:10Z <p>I'm on OS X 10.5.5 (though it does not matter much I guess)</p> <p>I have a set of text files with fancy characters like double backquotes, ellipsises ("...") in one character etc. </p> <p>I need to convert these files to good old plain 7-bit ASCII, preferably without losing character meaning (that is, convert those ellipses to three periods, backquotes to usual "s etc.).</p> <p>Please advise some smart command-line (bash) tool/script to do that.</p> http://stackoverflow.com/questions/212745/convert-text-to-7-bit-ascii-from-command-line/212875#212875 1 Answer by unwind for Convert text to 7-bit ASCII from command-line unwind 2008-10-17T16:30:42Z 2008-10-17T16:35:46Z <p><a href="http://www.manpagez.com/man/1/iconv/" rel="nofollow">iconv</a> should do it, as far as I know. Not 100% certain about how it handles conversions where one input character should/could become several output characters, such as with the ellipsis example ... Something to try!</p> <p>Update: I did try it, and it seems it doesn't work. It fails, possibly since it doesn't know how to express ellipsis (the test character I used) in a "smaller" encoding. Converting from UTF-8 to UTF-16 went fine. :/ Still, iconv might be worth investigating further.</p> http://stackoverflow.com/questions/212745/convert-text-to-7-bit-ascii-from-command-line/212923#212923 1 Answer by martind for Convert text to 7-bit ASCII from command-line martind 2008-10-17T16:48:08Z 2008-10-17T16:48:08Z <p>Have a look at transliteration tools; I like <a href="http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm" rel="nofollow">Unidecode</a> (in Perl), and it's not too hard to port to other languages.</p> http://stackoverflow.com/questions/212745/convert-text-to-7-bit-ascii-from-command-line/212955#212955 1 Answer by jleedev for Convert text to 7-bit ASCII from command-line jleedev 2008-10-17T16:56:03Z 2008-10-17T17:10:41Z <p>The <a href="http://elinks.or.cz/" rel="nofollow">Elinks</a> web browser will convert Unicode entities to their ASCII equivalents, giving things like "--" for "—" and "..." for "…", etc. There is a python module <a href="http://code.google.com/p/python-elinks/" rel="nofollow">python-elinks</a> which uses the same conversion table, and it would be trivial to turn it into a shell filter, like this:</p> <pre><code>#!/usr/bin/env python import elinks import sys for line in sys.stdin: line = line.decode('utf-8') sys.stdout.write(line.encode('ASCII', 'elinks')) </code></pre> http://stackoverflow.com/questions/212745/convert-text-to-7-bit-ascii-from-command-line/212969#212969 0 Answer by Jonathan Leffler for Convert text to 7-bit ASCII from command-line Jonathan Leffler 2008-10-17T16:59:06Z 2008-10-17T19:59:00Z <p>There was a question yesterday or the day before about file renaming, and I showed a Perl script <code>rename.pl</code> that would be usable for the task. The problem area is knowing how the odd characters are encoded, and devising the correct sequence of transliterations. I'd probably do it with an adaptation of that script that did all the mappings sequentially. Doing it one character at a time would be unduly fiddly.</p> <p>Question was: <a href="http://stackoverflow.com/questions/208181/how-to-rename-with-prefixsuffix">How to rename with prefix/suffix</a></p> http://stackoverflow.com/questions/212745/convert-text-to-7-bit-ascii-from-command-line/354969#354969 0 Answer by lennyk for Convert text to 7-bit ASCII from command-line lennyk 2008-12-10T02:49:10Z 2008-12-10T02:49:10Z <p>I have used iconv to convert a file from UTF-16LE (little-endian as I found out by trial and error) that was created by TextPad in Windows into ASCII on OSX like this:</p> <pre><code> cat utf16file.txt |iconv -f UTF-16LE -t ASCII &gt; asciifile.txt </code></pre> <p>You can pipe through hexdump as well to view the characters and make sure you're getting the right output, the terminal knows how to interpret UTF-16 and displays it properly so you can't tell just but doing 'cat' on the file:</p> <pre><code>cat utf16file.txt | iconv -f UTF-16LE -t ASCII | hexdump -C </code></pre> <p>This shows the layout with the hex char codes and the ASCII characters to the right-hand side, and you can try different encodings in the -f "from" parameter to figure out what you're dealing with.</p> <p>Use 'iconv -l' to list the character sets iconv can use on your system.</p>