src/FOLP/change
author wenzelm
Sun, 04 Nov 2001 21:00:06 +0100
changeset 12048 d38b5388e695
parent 0 a5a9c433f639
permissions -rwxr-xr-x
added get_thms_with_closure; fix_frees: only new ones;

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