blob: a8c3f143e6b15a83669fffcbe2bf979687b9b2b4 [file] [log] [blame]
Daniel Erat748945e2015-08-11 09:22:30 -06001#!/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