blob: a520f051fe0719c74bb66c5f4c7cc0e699f13b47 (
plain) (
blame)
1
2
3
4
5
6
|
# Load ~/.profile regardless of shell version
[ -e "$HOME"/.profile ] && . "$HOME"/.profile
# If ~/.bashrc exists, source that too; the tests for both interactivity and
# >=2.05a (for features like [[) are in there
[ -f "$HOME"/.bashrc ] && . "$HOME"/.bashrc
|