src/Tools/find-orphans
author berghofe
Thu, 25 Apr 1996 13:03:57 +0200
changeset 1686 c67d543bc395
parent 903 26138063bb88
permissions -rwxr-xr-x
Added functions mk_cntxt_splitthm and inst_split which instantiate the split-rule before it is applied. Inserted some comments.

#! /bin/csh
# $Id$
# Find all "orphan" ML-files (those with no thy-file)
foreach f (*.ML)
  if ( ! -f $f:r.thy ) echo $f
end