Blame view

testfiles/OLD/convert.sh 127 Bytes
Michał Lenart authored
1
2
3
4
#!/bin/bash

file=$1
Michał Lenart authored
5
for encoding in ISO8859-2 CP1250 CP852
Michał Lenart authored
6
7
8
do
    iconv -f UTF-8 -t $encoding < $file > $file.$encoding
done