Isabelle
author Walther Neuper <neuper@ist.tugraz.at>
Thu, 09 Sep 2010 13:31:36 +0200
branchisac-update-Isa09-2
changeset 37999 7d603b7ead73
parent 34282 549969a7f582
child 40829 fbac01813bff
permissions -rwxr-xr-x
updated Knowledge/Biegelinie.thy
     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 CLASSPATH="$(jvmpath "$CLASSPATH")"
    27 exec "$ISABELLE_JAVA" \
    28   "-Disabelle.home=$(jvmpath "$ISABELLE_HOME")" \
    29   -jar "$(jvmpath "$ISABELLE_HOME/lib/classes/isabelle-scala.jar")" "$@"