src/Tools/find-orphans
author lcp
Mon, 27 Feb 1995 16:58:59 +0100
changeset 903 26138063bb88
permissions -rwxr-xr-x
New shell script for finding orphan .ML files (those with no .thy file)

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