mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
14 lines
227 B
Bash
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
|
|
|