dotfiles/bash/.bash_profile
2020-04-28 09:14:16 -04:00

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"