aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
blob: bae38cfa80d43c6c6bd6fbfbbf45ebe1eb709861 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# If running Bash, source .bashrc.
if [ -n "$BASH_VERSION" ]; then
    if [ -f "$HOME/.bashrc" ]; then
        . "$HOME/.bashrc"
    fi
fi

# Add ~/bin to the path if it exists.
if [ -d "$HOME/bin" ]; then
    PATH="$HOME/bin:$PATH"
fi