10 lines
137 B
Bash
10 lines
137 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
[[ -f ~/.bash_local ]] && . ~/.bash_local
|
|
|
|
[[ -f ~/.profile ]] && . ~/.profile
|