src/Tools/find-orphans
author lcp
Fri, 30 Jun 1995 11:39:20 +0200
changeset 1174 e57a93d41de0
parent 903 26138063bb88
permissions -rwxr-xr-x
added mention of new theories BT and Perm

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