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