aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: 4594b77b5c33a05c1600cdaf7674b7b925e6d774 (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