Mercurial > repos > gbcs-embl-heidelberg > je_demultiplex
annotate je @ 0:424f44e2124e draft
Initial upload
author | gbcs-embl-heidelberg |
---|---|
date | Wed, 25 Nov 2015 12:37:28 -0500 |
parents | |
children | 89f63d298b43 |
rev | line source |
---|---|
0 | 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 $? |