src/Tools/find-orphans
changeset 4420 16b92885de6b
parent 4419 950001e4859a
child 4421 88639289be39
equal deleted inserted replaced
4419:950001e4859a 4420:16b92885de6b
     1 #! /bin/csh
       
     2 # $Id$
       
     3 # Find all "orphan" ML-files (those with no thy-file)
       
     4 foreach f (*.ML)
       
     5   if ( ! -f $f:r.thy ) echo $f
       
     6 end