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