Hey Steve,
Ask away.
Do you know about .bash_profile. (If you are running bourne shell... or whatever the equivalent is in the others...)
Ok. a dot file is hidden .whatever,
so you have to do an ls -la from a terminal to see it.
Find out what loads at your particular login and edit it.
--------------
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
TEST=test
export TEST
---------------
