src/Tools/runqed
author oheimb
Wed, 03 Apr 1996 19:27:14 +0200
changeset 1637 b8a8ae2e5de1
parent 920 b162fe4ae444
permissions -rwxr-xr-x
Updated: 01-Mar-96 when functional strictified, copy_def based on when_def
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.