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