src/Tools/find-orphans
author oheimb
Wed, 03 Apr 1996 19:27:14 +0200
changeset 1637 b8a8ae2e5de1
parent 903 26138063bb88
permissions -rwxr-xr-x
Updated: 01-Mar-96 when functional strictified, copy_def based on when_def

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