aboutsummaryrefslogtreecommitdiff
path: root/contrib/ascebc
blob: a8c3f143e6b15a83669fffcbe2bf979687b9b2b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
iconv -f UTF-8 -t IBM-1047 $1 > temp.file
if test -x $1
then 
  rm $1
  mv temp.file $1
  chmod +x $1
else
  rm $1
  mv temp.file $1
fi