14 lines
316 B
Bash
14 lines
316 B
Bash
#
|
|
# $HOME/.bash_profile
|
|
#
|
|
|
|
export PATH="/usr/local/opt/texinfo/bin:$PATH"
|
|
|
|
[[ -f "$HOME/.bashrc" ]] && source "$HOME/.bashrc"
|
|
|
|
[[ -f "$HOME/.bash_local" ]] && source "$HOME/.bash_local"
|
|
|
|
[[ -f "$HOME/.bash_profile.local" ]] && source "$HOME/.bash_profile.local"
|
|
|
|
[[ -f "$HOME/.profile" ]] && source "$HOME/.profile"
|