bin/isabelle
author berghofe
Mon, 19 Nov 2001 17:36:40 +0100
changeset 12234 9d86f1cd2969
parent 11566 94d2d6531c57
child 14981 e73f8140af78
permissions -rwxr-xr-x
Added setup for proof rewrite rules.

#!/usr/bin/env bash
#
# $Id$
# Author: Markus Wenzel, TU Muenchen
# License: GPL (GNU GENERAL PUBLIC LICENSE)
#
# Smart selection of isabelle-process versus isabelle-interface.

THIS=$(cd "$(dirname "$0")"; pwd)
NAME="$(basename "$0")"

case "$NAME" in
  I*)
    PRG=isabelle-interface
    ;;
  i*)
    PRG=isabelle-process
    ;;
esac

exec "$THIS/$PRG" "$@"