lib/Tools/fixheaders
author wenzelm
Tue, 08 Apr 2008 15:47:10 +0200
changeset 26576 fc76b7b79ba9
parent 16704 89cc9172f0be
permissions -rwxr-xr-x
removed obsolete AUTO_PERL feature;

#!/usr/bin/env bash
#
# $Id$
# Author: Florian Haftmann, TUM
#
# DESCRIPTION: turn Isar theory headers into imports-uses-begin format


## diagnostics

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

function usage()
{
  echo
  echo "Usage: $PRG [FILES|DIRS...]"
  echo
  echo "  Recursively find .thy files, turning Isar theory headers into"
  echo "  imports-uses-begin format."
  echo
  echo "  Renames old versions of FILES by appending \"~~\"."
  echo
  exit 1
}


## process command line

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

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


## main

find $SPECS -name \*.thy -print | \
  xargs perl -w "$ISABELLE_HOME/lib/scripts/fixheaders.pl"