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