# Load ~/.profile regardless of shell version if test -e "$HOME"/.profile ; then . "$HOME"/.profile fi # Give up completely if no BASH_VERSINFO (<2.0) if ! test "$BASH_VERSINFO" ; then return fi # Source interactive Bash config if it exists if [[ -r $HOME/.bashrc ]] ; then source "$HOME"/.bashrc fi