18

Possible Duplicate:
Add folder to PATH

I want to a add a directory to my bash to search in, and I am using the $PATH=.... it works however when I open a new command window it is not there.

How can I permanently add this to the path on Linux?

1 Answers1

17

Add a PATH=$PATH:. line to your ~/.bashrc. See this question for details.

jpalecek
  • 501