File: ascebc

package info (click to toggle)
libmicrohttpd 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,572 kB
  • sloc: ansic: 107,053; sh: 5,357; makefile: 2,131; pascal: 1,591; sed: 16
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