le 24 Jun 2002 11:54:45 +0200
"Pierre Crescenzo" <[EMAIL PROTECTED]> a tapot� :
> Bonjour,
salut
> Et il existe une mani�re simple de changer l'encodage d'un grand
> nombre de fichiers ?
utiliser iconv dans un script du genre :
#!/bin/sh
for i in `find /PATH -name \*.java`
do
iconv $i -f LATIN1 -t UTF8 -o temp
mv temp $i
done
(je sais, c'est minimaliste... faudra adapter pour etre recursif ;)
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]