bin/isabelle
author wenzelm
Tue, 25 Sep 2001 12:16:49 +0200
changeset 11566 94d2d6531c57
parent 11550 915c5de6480f
child 14981 e73f8140af78
permissions -rwxr-xr-x
tuned;

#!/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" "$@"