src/Tools/find-orphans
author wenzelm
Fri, 21 Nov 1997 15:29:56 +0100
changeset 4271 3a82492e70c5
parent 903 26138063bb88
permissions -rwxr-xr-x
changed Pure/Sequence interface -- isatool fixseq;

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