author | oheimb |
Tue, 15 Oct 1996 16:40:04 +0200 | |
changeset 2098 | 2bfc0675c92f |
parent 920 | b162fe4ae444 |
permissions | -rwxr-xr-x |
920 | 1 |
#! /bin/csh |
2 |
# $Id$ |
|
3 |
# Run qed on all ML files in the current directory |
|
4 |
foreach f (*ML) |
|
5 |
echo Expanding shorthands in $f. \ Backup file is $f:r.bak |
|
6 |
qed $f $f:r.MLL |
|
7 |
mv $f $f:r.bak |
|
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 | 10 |
echo Finished. |