- Added Bin directory

This commit is contained in:
Damien Broqua 2017-07-22 13:46:47 +02:00
parent 6458594af0
commit 51acba0d4d
6 changed files with 111 additions and 0 deletions

6
Bin/to_utf-8 Executable file
View file

@ -0,0 +1,6 @@
#! /bin/bash
for i in "*.${1}"; do
iconv -f iso-8859-15 -t utf-8 ${i} > ${i}.tmp
mv ${i}.tmp ${i}
done