#!/bin/sh # # Java - trivial shell wrapper for Java applications # # Just sets a CLASSPATH and then runs the java interpreter. This is # so that you can avoid having a CLASSPATH in your standard environment, # which is bad because then browsers such as Netscape will use local # copies of classes that you're trying to debug, giving you different # security restrictions, and making you very confused. # # Copyright (C) 1996 by Jef Poskanzer . All rights reserved. if [ "$CLASSPATH" = "" ] ; then CLASSPATH="$HOME/java" export CLASSPATH fi java -mx100000000 $*