src/Tools/find-orphans
author lcp
Tue, 25 Jul 1995 16:58:06 +0200
changeset 1187 bc94f00e47ba
parent 903 26138063bb88
permissions -rwxr-xr-x
Includes Sum.thy as a parent for mutual recursion

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