Click to See Complete Forum and Search --> : What is PATH and how do I add /usr/bin to it?


fearby
11-26-2001, 05:49 PM
As it says......

Thanks

:D

KT
11-26-2001, 05:53 PM
to see your PATH

$ echo $PATH

and to add /usr/bin to it

$ PATH="$PATH:/usr/bin:"
$ export PATH

its best if you set that in your .bashrc file in your home directory.