How will I make this /media/De Soft/mongodb/bin
PATH variable permanent?
Everyone is saying "export PATH=$PATH:media/De\ Soft/mongodb/bin
to your ~/.profile
, or .bashrc
, or .zshenv
depending on your shell".
I don't know what is ~/.profile
, or .bashrc
, or .zshenv
. What do they do actually?
How will I add export PATH=$PATH:my/path
to my .profile/.bashrc/.zshenv?
I'm using 64 bit Ubuntu 14.04 LTS with default terminal.
PATH
in~/.profile
, exporting is redundant, sincePATH
already is an environment variable. – Gunnar Hjalmarsson Mar 26 '17 at 21:17source ~/.profile
. – timbo Jul 11 '17 at 22:44export PATH="$PATH:/media/De\ Soft/mongodb/bin"
? Is it optional? – Bruno Bentzen Dec 31 '18 at 05:42