lib/Tools/convert
author wenzelm
Thu, 15 Nov 2001 18:20:13 +0100
changeset 12207 4dff931b852f
parent 11001 6754fa0f2af7
child 14981 e73f8140af78
permissions -rwxr-xr-x
added Induct/Binary_Trees.thy, Induct/Tree_Forest (converted from former ex/TF.ML ex/TF.thy ex/Term.ML ex/Term.thy);

#!/usr/bin/env bash
#
# $Id$
# Author: David von Oheimb, TU Muenchen
# License: GPL (GNU GENERAL PUBLIC LICENSE)
#
# DESCRIPTION: convert legacy tactic scripts to Isabelle/Isar tactic emulation


## diagnostics

PRG="$(basename "$0")"

function usage()
{
  echo
  echo "Usage: $PRG [FILES|DIRS...]"
  echo
  echo "  Recursively find .ML files, converting legacy tactic scripts to"
  echo "  Isabelle/Isar tactic emulation."
  echo "  Note: conversion is only approximated, based on some heuristics."
  echo
  echo "  Renames old versions of FILES by appending \"~0~\"."
  echo "  Creates new versions of FILES by appending \".thy\"."
  echo
  exit 1
}


## process command line

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

SPECS="$@"; shift "$#"


## main

#set by configure
AUTO_PERL=perl

find $SPECS \( -name \*.ML \) -print | \
  xargs "$AUTO_PERL" -w "$ISABELLE_HOME/lib/scripts/convert.pl"