@echo off rem The path to the lib directory containing the .jar files, relative to rem the directory containing the .bat file (so that the whole CSE software rem directory tree can be moved to a different location). set RELLIB14x=..\lib rem The path to the lib directory, using an absolute name (so the .bat file rem can be moved to a different location, e.g. the A: drive, without having rem to move all the .jar files too). rem MODIFY THIS BINDING IF IT IS WRONG FOR YOUR INSTALLATION. set ABSLIB14x=c:\CSE\lib rem Initialize the CLASSPATH with the current directory, the classes rem subdirectory, and the examples directories to the path, so that we can rem put example .class files in the same directory as the .bat file, or in rem a nearby examples directory. set CLASSPATH=.;.\classes;..\examples;..\examples\classes rem Adding .jar files to the CLASSPATH using relative path names. set CLASSPATH=%CLASSPATH%;%RELLIB14x%\jeva.jar;%RELLIB14x%\uwcse.jar rem Adding .jar files to the CLASSPATH using absolute path names. set CLASSPATH=%CLASSPATH%;%ABSLIB14x%\jeva.jar;%ABSLIB14x%\uwcse.jar rem echo Setting CLASSPATH to %CLASSPATH% set JEVA=uwcse.tools.JevaUW set INIT="import uwcse.tools.*;" java %JEVA% -initStatements %INIT% %1