5 lines
128 B
Plaintext
5 lines
128 B
Plaintext
|
# Load the ~/.bashrc file if we're using Bash
|
||
|
if test -n "$BASH_VERSION"; then
|
||
|
test -r "$HOME/.bashrc" && . "$HOME/.bashrc"
|
||
|
fi
|