src/Tools/find-orphans
author lcp
Fri, 14 Apr 1995 11:26:22 +0200
changeset 1058 b0ff6010602a
parent 903 26138063bb88
permissions -rwxr-xr-x
Deleted comment

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