src/Tools/find-orphans
author paulson
Tue, 05 Mar 1996 17:23:21 +0100
changeset 1545 61f5410b2824
parent 903 26138063bb88
permissions -rwxr-xr-x
New documentation for example

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