src/Tools/runqed
author clasohm
Fri, 13 Oct 1995 11:48:40 +0100
changeset 1280 909079af97b7
parent 920 b162fe4ae444
permissions -rwxr-xr-x
corrected spelling of title
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
920
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     1
#! /bin/csh
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     2
# $Id$
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     3
# Run qed on all ML files in the current directory
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     4
foreach f (*ML)
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     5
echo Expanding shorthands in $f. \ Backup file is $f:r.bak
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     6
qed $f $f:r.MLL
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     7
mv $f $f:r.bak
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
     8
mv $f:r.MLL $f
813
4a266c3d4cc0 qed is a utility that makes ML files store the defined theories in Isabelle's
clasohm
parents:
diff changeset
     9
end
920
b162fe4ae444 Added initial /bin/csh line and comments
lcp
parents: 891
diff changeset
    10
echo Finished.