On tcsh or csh shells in Unix: setenv CLASSPATH
'.:/u/mooney/cs343-code'
On bash shell in Unix: export CLASSPATH='.:/u/mooney/cs343-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 for Project 1 here 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 for Project 1 here for a list of possible commands to try out.