Mercurial > repos > gbcs-embl-heidelberg > je_demultiplex
view je @ 0:424f44e2124e draft
Initial upload
author | gbcs-embl-heidelberg |
---|---|
date | Wed, 25 Nov 2015 12:37:28 -0500 |
parents | |
children | 89f63d298b43 |
line wrap: on
line source
#!/bin/sh # Wrapper around je_1.0_bundle.jar # where are we stored ? DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # echo $DIR # path to jar file to execute, this jar is supposed to be in the same dir as this script JAR_FILE=$DIR"/je_1.0_bundle.jar" OPTS="-Xmx2g" # uncomment to change logging level using your own log4j.xml found in $DIR file # OPTS=$OPTS" -Dlog4j.configuration=file:$DIR/log4j.xml" java $OPTS -jar $JAR_FILE "$@" exit $?