I believe that every developers has seen that _$ xxx command not found_
, and we all found solution by $ source ~/.profile
Ā , or $ source ~/.bash_profile,
this is a note to make things clear of those file.
.profile
is for things that are not specifically related to Bash, like environment variablesPATH
and friends, and should be available anytime. For example,Ā.profile
should also be loaded when starting a graphical desktop session..bashrc
is for the configuring the interactive Bash usage, like Bash aliases, setting your favorite editor, setting the Bash prompt, etc..bash_profile
is for making sure that both the things inĀ.profile
andĀ.bashrc
are loaded for login shells. For example,Ā.bash_profile
could be something simple like
. ~/.profile. ~/.bashrc