DEBSOURCES
Skip Quicknav
sources / libmicrohttpd / 0.9.20-1%2Bdeb7u1 / contrib / ascebc
1234567891011
#!/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