src/FOLP/change
author oheimb
Wed, 03 Apr 1996 19:27:14 +0200
changeset 1637 b8a8ae2e5de1
parent 0 a5a9c433f639
permissions -rwxr-xr-x
Updated: 01-Mar-96 when functional strictified, copy_def based on when_def

#! /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.