On tcsh or csh shells in Unix: alias javac /lusr/java5/bin/javac; alias java /lusr/java5/bin/java
On bash shell in Unix: alias javac=/lusr/java5/bin/javac; alias java=/lusr/java5/bin/java
Instead of typing these in everytime you run the code, you can also add these lines in the .cshrc file (for tcsh or csh), or the .bashrc and .profile files (for bash).
On tcsh or csh shells in Unix: setenv CLASSPATH
'.:/u/mooney/ir-code'
On bash shell in Unix: export CLASSPATH='.:/u/mooney/ir-code'
Instead of typing these in everytime you run the code, you can also add these lines in the .cshrc file (for tcsh or csh), or the .bashrc and .profile files (for bash).
Follow the trace at www.cs.utexas.edu/users/mooney/ir-course/sample-trace.txt for a list of possible commands to try out.
On tcsh or csh shells in Unix:
setenv CLASSPATH '.:/u/[your-login-name]'
On bash shell in Unix:
export CLASSPATH='.:/u/[your-login-name]'
where [your-login-name] is your Unix login name.
Instead of typing these in everytime you run the code, you can also add these lines in the .cshrc file (for tcsh or csh), or the .bashrc and .profile files (for bash).
Follow the trace at www.cs.utexas.edu/users/mooney/ir-course/sample-trace.txt for a list of possible commands to try out.