File: ascebc

package info (click to toggle)
libmicrohttpd 0.9.20-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,884 kB
  • sloc: ansic: 20,914; sh: 11,423; pascal: 972; makefile: 620
file content (11 lines) | stat: -rw-r--r-- 146 bytes parent folder | download | duplicates (9)
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