dotfiles/bash_profile
2011-05-29 13:58:15 +02:00

14 lines
227 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