#!/bin/sh
#
# hyperj -- script for running hyperj
#
# SYNOPSIS: set CLASSPATH and run Hyper/J

# If needed, change the following configuration parameters for your system
# by changing what is to the right of the equals sign (=) on the lines below
: ${JPATHSEP=';'}                           # change to ':' for Unix
: ${JFILESEP='\'}                           # change to '/' for Unix
: ${HYPERJDIR=`cygpath -wa "/cygdrive/c/hyperj"`}  # local home of HyperJ

CLASSPATH=".${JPATHSEP}${HYPERJDIR}${JFILESEP}bin${JFILESEP}hyperj.jar${JPATHSEP}${CLASSPATH}"
export CLASSPATH

# printenv CLASSPATH

exec java -mx128m com.ibm.hyperj.hyperj "$@"
