src/Tools/find-orphans
author paulson
Mon, 09 Sep 1996 11:08:01 +0200
changeset 1962 e60a230da179
parent 903 26138063bb88
permissions -rwxr-xr-x
Corrected associativity: must be to right, as the type dictatess

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