aboutsummaryrefslogtreecommitdiff
path: root/src/chg
blob: 32d525f78e4ea75f1d5443f6fbeb97e0d783f021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
#
# Shell script for name changing source code
#

if [ ! $# = 3 ]; then
   echo "Usage: chg <source> <old_word> <new_word>"
   echo "       (this script changes <source> directly)"
   exit 1
fi

if [ ! -r $1 ]; then
   echo "source file ->$1<- doesn't exist..."
   exit 1
fi

if [ ! -r $1.BAK ]; then
   echo "creating backup file: $1.BAK"
   cp $1 $1.BAK
fi

sed "s/$2/$3/g" $1 > out
#sed s/$2/$3/ $1 > out
rm $1
mv out $1
echo "done!"