src/Tools/find-orphans
author wenzelm
Mon, 06 Oct 1997 18:22:22 +0200
changeset 3776 38f8ec304b95
parent 903 26138063bb88
permissions -rwxr-xr-x
added sort_to_ast; eliminated raise_ast;

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