src/HOL/IMP/export.sh
author blanchet
Fri, 21 Feb 2014 00:09:55 +0100
changeset 55641 5b466efedd2c
parent 53498 05313b45a5ae
permissions -rwxr-xr-x
renamed 'recs' and 'cases' theorems 'rec' and 'case' in old datatype package, for consistency with new package

#!/usr/bin/env bash
#
# Author: Gerwin Klein
#
#  make a copy of IMP with isaverbatimwrite lines in thy files removed

## diagnostics

function fail()
{
  echo "$1" >&2
  exit 2
}

## main

EXPORT=IMP

rm -rf "$EXPORT"

# make directories

DIRS=$(find . -type d)
for D in $DIRS; do
    mkdir -p "$EXPORT/$D" || fail "could not create directory $EXPORT/$D"
done

# filter thy files

FILES=$(find . -name "*.thy")
for F in $FILES; do
    grep -v isaverbatimwrite "$F" > "$EXPORT/$F"
done

# copy rest

cp ROOT.ML "$EXPORT"
cp -r document "$EXPORT"

# tar and clean up
tar cvzf "$EXPORT.tar.gz" "$EXPORT"
rm -r "$EXPORT"