bin/isabelle
author paulson
Fri, 01 Oct 2004 11:54:15 +0200
changeset 15223 e669fb5b0f5a
parent 14981 e73f8140af78
child 15778 98af3693f6b3
permissions -rwxr-xr-x
patch to "display"

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