src/Tools/find-orphans
author nipkow
Sun, 26 Mar 1995 17:04:45 +0200
changeset 973 f57fb576520f
parent 903 26138063bb88
permissions -rwxr-xr-x
Modified If_def to avoid ambiguity.

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