Moved Bin/ to bin/

This commit is contained in:
Damien Broqua 2021-01-24 15:16:13 +01:00
parent d5c79fcfc2
commit 39772dcd24
32 changed files with 9 additions and 9 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