Depending on your shell (bash, csh, ksh, etc) you have to edit your users startup files in your home directory. These are hidden files, meaning their names are preceeded with a dot. The command to list files in linux is 'ls', I had not previously known that someone had made a dir command, but trust me ls is easier, at least its easier to type right?
Ok so in your home directory do an ls -la to list all hidden files in long form so that you can see everything.
I am going to go out on a limb and guess that you are using bash as your shell ( the format of your export command kind of gives it away but hey I might be wrong), this may not be correct so if you are using a different shell your edits will be in a different file than the ones I suggest.
For bash these are your two startup files to worry about
:
~/.bashrc
~/.bash_profile
The tilde preceeding the slash is short form for /home/$username/ this is a variable that you can use for convenience. These files are in essence shell scripts. You can run commands inside of these and everything else but their primary purpose is to setup your users enviroment variables, PATH, LD_LIBRARY_PATH, PS1 etc.
The reason for the two files is one is used for interactive logins and the other is used for non-interactive logins. For more info on this read the bash man page with the command, man bash, the section explaining interactive and non-interactive logins was pretty good. I would recommend reading the whole thing start to finish but no one ever seems to so just do the what I do, search for the topic you need. Depending on your $PAGER of choice ( more or less, or something else ) the way to search is by typing / and then the word you want to find in the file.
If you encounter a line in your .bashrc that reads something like this:
. /etc/profile
What that means is that you source note the space after the dot ( the short hand for source is simply a dot by itself ) a global bashrc in etc. Changes to this file will be global for all users that source it. Sourcing a file basically execs it so that it will be run similarly to your .bashrc.
I hope that helps
ed