src/FOLP/change
author clasohm
Mon, 05 Feb 1996 21:33:14 +0100
changeset 1477 4c51ab632cda
parent 0 a5a9c433f639
permissions -rwxr-xr-x
expanded tabs

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