comparison je @ 0:111ba1180318 draft

Initial upload
author gbcs-embl-heidelberg
date Wed, 25 Nov 2015 12:36:37 -0500
parents
children ff5fddc4739b
comparison
equal deleted inserted replaced
-1:000000000000 0:111ba1180318
1 #!/bin/sh
2 # Wrapper around je_1.0_bundle.jar
3
4 # where are we stored ?
5 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
6 # echo $DIR
7 # path to jar file to execute, this jar is supposed to be in the same dir as this script
8 JAR_FILE=$DIR"/je_1.0_bundle.jar"
9
10 OPTS="-Xmx2g"
11 # uncomment to change logging level using your own log4j.xml found in $DIR file
12 # OPTS=$OPTS" -Dlog4j.configuration=file:$DIR/log4j.xml"
13
14 java $OPTS -jar $JAR_FILE "$@"
15 exit $?