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?
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?
Add a PATH=$PATH:. line to your ~/.bashrc. See this question for details.
PATH is safe, an attacker can still run code as you by creating a program or script named after misspelled commands, such as mroe, tial, vmi, emasc, etc. Those won't be found earlier in the path, and then you end up running the attacker's code as you.
– Fran
Jun 08 '12 at 20:42
aws ec2 terminate-instances or docker rmi with prejudice
– nik.shornikov
Jan 08 '17 at 20:30