bin/isabelle
author paulson
Wed, 08 Dec 2004 10:28:05 +0100
changeset 15386 06757406d8cf
parent 14981 e73f8140af78
child 15778 98af3693f6b3
permissions -rwxr-xr-x
converted Lfp to new-style theory

#!/usr/bin/env bash
#
# $Id$
# Author: Markus Wenzel, TU Muenchen
#
# 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" "$@"