bin/isabelle
author paulson
Fri, 06 Aug 2004 13:35:26 +0200
changeset 15116 af3bca62444b
parent 14981 e73f8140af78
child 15778 98af3693f6b3
permissions -rwxr-xr-x
modified resolution proof

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