src/Tools/find-orphans
author paulson
Thu, 21 Aug 1997 12:55:10 +0200
changeset 3649 e530286d4847
parent 903 26138063bb88
permissions -rwxr-xr-x
Renamed set_of_list to set, and relevant theorems too

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