7 lines
132 B
Bash
7 lines
132 B
Bash
|
#!/bin/bash
|
||
|
for i in tableau_de_bord*.csv
|
||
|
do
|
||
|
echo "conversion du fichier ${i}"
|
||
|
iconv -f "iso-8859-1" -t "utf8" ${i} -o tr_${i}
|
||
|
done
|