bin/isabelle
author paulson
Fri, 21 Jan 2005 13:52:57 +0100
changeset 15448 fb7b8313a20d
parent 14981 e73f8140af78
child 15778 98af3693f6b3
permissions -rwxr-xr-x
negate_nead (???) changed to negated_asm_of_head

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