Other Help Topics :: Setting $PATH



Where/how can I change the PATH?

Wado (thanks)

you can change it anywhere.

Typically, for automatically setting variables, you'd do it in $HOME/.bash_profile, since that affects your initial login shell and all subsequent shells:
export PATH="$PATH:/a/new/path:/another/new/path"


original here.