Isabelle
author blanchet
Thu, 28 Jul 2011 16:32:39 +0200
changeset 44872 2b75760fa75e
parent 44412 71aba8ee3b8f
child 45733 329ced2615eb
permissions -rwxr-xr-x
no needless mangling
     1 #!/usr/bin/env bash
     2 #
     3 # Author: Makarius
     4 #
     5 # Generic Isabelle application wrapper.
     6 
     7 if [ -L "$0" ]; then
     8   TARGET="$(LC_ALL=C ls -l "$0" | sed 's/.* -> //')"
     9   exec "$(cd "$(dirname "$0")"; cd "$(pwd -P)"; cd "$(dirname "$TARGET")"; pwd)/$(basename "$TARGET")" "$@"
    10 fi
    11 
    12 
    13 ## settings
    14 
    15 ISABELLE_HOME="$(cd "$(dirname "$0")"; pwd -P)"
    16 source "$ISABELLE_HOME/lib/scripts/getsettings" || exit 2
    17 
    18 unset ISABELLE_SETTINGS_PRESENT
    19 unset ISABELLE_SITE_SETTINGS_PRESENT
    20 
    21 
    22 ## main
    23 
    24 [ -e "$ISABELLE_HOME/Admin/build" ] && "$ISABELLE_HOME/Admin/build" jars
    25 
    26 exec "$ISABELLE_TOOL" java \
    27   "-Disabelle.home=$(jvmpath "$ISABELLE_HOME")" \
    28   isabelle.GUI_Setup "$@"