Convert some lines from ISO-8859-1 to UTF-8.

perl -i -pe 'use Text::Iconv;
$c1 = Text::Iconv->new("utf-8", "utf-8");
$c2 = Text::Iconv->new("iso-8859-1", "utf-8");
if (!$c1->convert($_)) { $_ = $c2->convert($_); }' \
`find * -type f`
This commit is contained in:
Edmund Grimley Evans
2015-03-08 22:07:50 +00:00
parent 5de8b5638f
commit aa812e8745
4 changed files with 10 additions and 10 deletions

View File

@ -2,7 +2,7 @@
* i386 specific functions for TCC assembler
*
* Copyright (c) 2001, 2002 Fabrice Bellard
* Copyright (c) 2009 Fr<EFBFBD>d<EFBFBD>ric Feret (x86_64 support)
* Copyright (c) 2009 Frédéric Feret (x86_64 support)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public