Mercurial > dive4elements > gnv-client
view gnv-artifacts/bin/run.sh @ 1053:6169ddc827ac
The format of a histogram pdf depends on the width and height specified by the user - or the default size (issue290).
gnv-artifacts/trunk@1127 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Wed, 26 May 2010 07:00:55 +0000 |
parents | 874644bf1da8 |
children | f953c9a559d8 |
line wrap: on
line source
#!/bin/bash DIR=`dirname $0`/.. CLASSPATH= for l in `find -name \*.jar -print`; do CLASSPATH=$CLASSPATH:$l done export CLASSPATH exec java -Xmx256m \ -server \ -Djava.io.tmpdir=/tmp/ \ -Dartifact.database.dir="$DIR/conf" \ de.intevation.artifactdatabase.App \ 2>&1 > /dev/null