| author | paulson | 
| Thu, 26 Sep 1996 17:30:52 +0200 | |
| changeset 2041 | a3262b93c1d2 | 
| 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. |