#!/bin/ksh
#
# This script will invoke the CLI Trace Parser tool on Unix platforms using
# the Korn shell.
#
# There are two ways provided to do this.  Please choose one.
#
# Method 1
# ========
#
# Uncomment the two SET statements after editing <YourCLITraceParserPath>
# appropriately.  The value should be the full path to the directory where
# CLI Trace Parser is installed:
#
# export CLITRACEPARSERPATH=<YourCLITraceParserPath>
#
#
# export CLASSPATH=$CLASSPATH;$CLITRACEPARSERPATH\CLITraceParser.jar
# 
#
# Method 2
# ========
#
# Add CLITraceParser.jar in your environment classpath.  (ie: in your .profile)
#
# 
# The following command will invoke the tool using the JRE.
#jre -mx128000000 -cp $CLASSPATH:./CLITraceParser.jar CLITraceParser $1 $2 $3
#
# The following command will invoke the tool using the Java VM (Java 1.2+)
java -mx -mx128000000 -cp $CLASSPATH:./CLITraceParser.jar CLITraceParser $1 $2 $3

