dotfiles/bash/profile
2012-08-09 15:37:56 +02:00

13 lines
228 B
Bash

## bash_profile
# handle .profile too
. ~/.profile
# homebrew bash autocompletion
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
# execute bashrc
[ -n "$BASH" ] && . ~/.bashrc