#! /bin/csh
# $Id: find-orphans,v 1.1 1995/02/27 15:58:59 lcp Exp $
# Find all "orphan" ML-files (those with no thy-file)
foreach f (*.ML)
  if ( ! -f $f:r.thy ) echo $f
end
