From: Vincent Le Gallic Date: Fri, 18 Apr 2014 13:12:54 +0000 (+0200) Subject: shortcut pour iconv X-Git-Url: http://gitweb.pimeys.fr/?p=scripts-20-100.git;a=commitdiff_plain;h=8bcf2e49f9d3b084598a1f2a6793382c0a5af22f shortcut pour iconv --- diff --git a/utf8.sh b/utf8.sh new file mode 100755 index 0000000..7fb50fb --- /dev/null +++ b/utf8.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Pour convertir un fichier d'ISO vers UTF-8 + +file=$1 + +iconv -f iso8859-1 "${file}" | sponge "${file}"