#!/bin/sh
# Change this Script, to suit your needs
# (This script has not been tested)
if [ -z ${CLASSPATH:=""} ] ; then
#        CLASSPATH=/opt/software/java2html/j2h.jar
        CLASSPATH=./Java2HTML/j2h.jar
else
#        CLASSPATH=/opt/software/java2html/j2h.jar:${CLASSPATH}
        CLASSPATH=./Java2HTML/j2h.jar:${CLASSPATH}
fi
export CLASSPATH
#exec java -Dinstall.root=/opt/software/java2html com.shattu.Java2HTML "$@"
#exec java -Dinstall.root=./Java2HTML Java2HTML "$@"
exec java j2h "$@"

