src/Tools/find-orphans
author wenzelm
Mon, 15 Dec 1997 14:40:13 +0100
changeset 4410 b68047c56fce
parent 903 26138063bb88
permissions -rwxr-xr-x
tuned;

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