aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: 3d50e43744ece361b1f11e9a1e2dbf1f2c44aeaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# Source Bourne shell profile if it exists
if [[ -r $HOME/.profile ]]; then
    source "$HOME/.profile"
fi

# Source interactive Bash config if it exists
if [[ -r $HOME/.bashrc ]]; then
    source "$HOME/.bashrc"
fi