src/Tools/find-orphans
author lcp
Thu, 06 Apr 1995 10:55:06 +0200
changeset 1000 0ad2b1da57ff
parent 903 26138063bb88
permissions -rwxr-xr-x
Now sets loadpath.

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