src/Tools/find-orphans
author paulson
Wed, 09 Oct 1996 13:32:33 +0200
changeset 2073 fb0655539d05
parent 903 26138063bb88
permissions -rwxr-xr-x
New unified treatment of sequent calculi by Sara Kalvala combines the old LK and Modal with the new ILL (Int. Linear Logic)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
903
26138063bb88 New shell script for finding orphan .ML files (those with no
lcp
parents:
diff changeset
     1
#! /bin/csh
26138063bb88 New shell script for finding orphan .ML files (those with no
lcp
parents:
diff changeset
     2
# $Id$
26138063bb88 New shell script for finding orphan .ML files (those with no
lcp
parents:
diff changeset
     3
# Find all "orphan" ML-files (those with no thy-file)
26138063bb88 New shell script for finding orphan .ML files (those with no
lcp
parents:
diff changeset
     4
foreach f (*.ML)
26138063bb88 New shell script for finding orphan .ML files (those with no
lcp
parents:
diff changeset
     5
  if ( ! -f $f:r.thy ) echo $f
26138063bb88 New shell script for finding orphan .ML files (those with no
lcp
parents:
diff changeset
     6
end