When I make a change in my ~/.bash_profile file and I add such a variable as:
export PATH="$PATH:$HOME/.composer/vendor/bin"
And after save and close, I need to reflect these changes in my $PATH variable. To do that, I'm doing
source .bash_profile.
When I echo my $PATH variable, the above added path is shown, but when I logout and login again, these changes aren't reflected..
Isn't it so that on each login, the .bash_profile gets reread?