dotfiles/bash/.bash_profile

14 lines
316 B
Bash
Raw Permalink Normal View History

2019-01-28 02:46:29 +00:00
#
2019-05-04 16:43:16 +00:00
# $HOME/.bash_profile
2019-01-28 02:46:29 +00:00
#
2020-02-12 19:23:33 +00:00
export PATH="/usr/local/opt/texinfo/bin:$PATH"
[[ -f "$HOME/.bashrc" ]] && source "$HOME/.bashrc"
2019-01-28 02:46:29 +00:00
2019-05-04 16:43:16 +00:00
[[ -f "$HOME/.bash_local" ]] && source "$HOME/.bash_local"
2019-02-07 21:53:02 +00:00
2020-04-28 13:14:16 +00:00
[[ -f "$HOME/.bash_profile.local" ]] && source "$HOME/.bash_profile.local"
2019-05-04 16:43:16 +00:00
[[ -f "$HOME/.profile" ]] && source "$HOME/.profile"