I could reload them in this order http://www.thegeekstuff.com/2008/10/execution-sequence-for-bash_profile-bashrc-bash_login-profile-and-bash_logout/ with source, but there is a short way?
I mean, a command that loads all files in its order, and not to do:
source /etc/profile
source ~/.bash_profile
source ~/.bashrc
source ~/.bash_login
source ~/.profile
Put this in your
~/.bashrcNow you can go
rldwhenever you want to reload all those files.