lib/Tools/update_semicolons
author haftmann
Wed, 28 Jan 2015 08:29:08 +0100
changeset 59456 180555df34ea
parent 58861 5ff61774df11
permissions -rwxr-xr-x
string printing conformant to both (S)ML and Isabelle/ML

#!/usr/bin/env bash
#
# Author: Makarius
#
# DESCRIPTION: remove obsolete semicolons from theory sources


## diagnostics

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

function usage()
{
  echo
  echo "Usage: isabelle $PRG [FILES|DIRS...]"
  echo
  echo "  Recursively find .thy files and remove obsolete semicolons."
  echo
  echo "  Old versions of files are preserved by appending \"~~\"."
  echo
  exit 1
}


## process command line

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

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


## main

find $SPECS -name \*.thy -print0 | \
  xargs -0 "$ISABELLE_TOOL" java isabelle.Update_Semicolons