lib/Tools/fixclasimp
author wenzelm
Fri, 19 Dec 1997 12:09:58 +0100
changeset 4456 44e57a6d947d
parent 4130 9fac2370a2f4
child 4508 f102cb0140fe
permissions -rwxr-xr-x
new version;

#!/bin/bash
#
# $Id$
#
# DESCRIPTION: fix references to implicit claset and simpset


## diagnostics

PRG=$(basename $0)

function usage()
{
  echo
  echo "Usage: $PRG [FILES|DIRS...]"
  echo
  echo "  Recursively find .ML files, fixing references to"
  echo "  implicit claset and simpset."
  echo
  echo "  Renames old versions of FILES by appending \"~~\"."
  echo
  exit 1
}


## process command line

[ $# -eq 0 -o "$1" = "-?" ] && usage

SPECS="$@"; shift $#


## main

PERL=$(type -path perl)
if [ -z $PERL ]; then
  echo "$PRG fatal error: no perl!?"
else
  find $SPECS -name \*.ML -print | xargs $PERL $ISABELLE_HOME/lib/scripts/fixclasimp.pl
fi