src/FOLP/change
author oheimb
Fri, 23 Feb 2001 16:31:18 +0100
changeset 11180 39d3b8e8ad5c
parent 0 a5a9c433f639
permissions -rwxr-xr-x
removed performance leak for split_conv_tac (and corresponding safe wrapper)

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