Home | History | Annotate | Download | only in contrib
      1 #!/bin/sh
      2 iconv -f UTF-8 -t IBM-1047 $1 > temp.file
      3 if test -x $1
      4 then 
      5   rm $1
      6   mv temp.file $1
      7   chmod +x $1
      8 else
      9   rm $1
     10   mv temp.file $1
     11 fi
     12