src/Tools/find-orphans
author wenzelm
Thu, 20 Mar 1997 18:27:23 +0100
changeset 2831 a4f09228b74f
parent 903 26138063bb88
permissions -rwxr-xr-x
isatool usedir;

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