Files
dotfiles/files/.bash_profile
2020-07-12 14:11:50 +01:00

13 lines
422 B
Bash

echo "Loading bash profile"
# Load .profile, containing login, non-bash related initializations.
source "$HOME/.profile"
# Load .bashrc, containing non-login related bash initializations.
source "$HOME/.bashrc"
# References:
# https://unix.stackexchange.com/questions/192521/loading-profile-from-bash-profile-or-not-using-bash-profile-at-all
# https://www.stefaanlippens.net/my_bashrc_aliases_profile_and_other_stuff/