your path is an environment variable, and you can see what it is by doing "echo $PATH". It is not tied to your user account. It is generally set in /etc/profile and /home/youraccount/.profile (if you are using bash). To add something to your path, you can run the command "export PATH=/some/new/path/bin:$PATH" which effectively appends something to your path variable (again, this is for bash). To make this command run every time you log in, but it in your .profile file.
|