src/FOLP/change
author nipkow
Tue, 08 Oct 2002 08:20:17 +0200
changeset 13630 a013a9dd370f
parent 0 a5a9c433f639
permissions -rwxr-xr-x
Got rid of rotates because of new simplifier

#! /bin/sh
#
# Usage:
#    expandshort FILE1 ... FILEn
#
#  leaves previous versions as XXX~~
#
for f in $*
do
echo Expanding shorthands in $f. \ Backup file is $f~~
mv $f $f~~; sed -e '
s/PFOL/FOLP/g
s/PIFOL/IFOLP/g
s/pfol/folp/g
s/pifol/ifolp/g
' $f~~ > $f
done
echo Finished.