Note on the problem of - can not find program - on sod.

The .bashrc file on the sod cluster is set up to not look at the local file. If you are trying to run the program Cube, you need to give the following command:

./Cube
and so on for the other files/programs.

Better fixes: copy my file to your space or edit the file. To copy the file from my space to yours, try this

cd
cp .bashrc .bashrc.bak
cp ~juell/.bashrc .bashrc
The "cd" gets you to your home directory. The "cp .bashrc .bashrc.bak" command creates a backup copy to go back to if things do not work correct. To use the backup copy if you have problems, just:
cp .bashrc.bak .bashrc
If you want to edit the .bashrc (or .profile) file, add to the PATH ":."


last updated 8/31/98 PLJ