#!/bin/sh

# a shell program that calls a java program

#set the environment variables

# Set path for using up-to-date version of JAVA
PATH=/usr/java1.2/bin:$PATH
export PATH

# where your up to date jdk is located
JAVA_HOME=/usr/java1.2

# set the classpath
CLASSPATH=.:$JAVA_HOME/lib/tools.jar
export CLASSPATH

#Show error messages also
java Try $1 2>&1