File: ascebc

package info (click to toggle)
libmicrohttpd 0.9.37%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,816 kB
  • ctags: 2,976
  • sloc: ansic: 37,360; sh: 11,471; pascal: 1,060; makefile: 1,038
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