9 lines
229 B
Bash
9 lines
229 B
Bash
#
|
|
# ~/.bash_profile -- Sourced by bash in login shells only
|
|
#
|
|
|
|
# Include .profile (contains ENV variables)
|
|
[[ -f ~/.profile ]] && . ~/.profile
|
|
|
|
# Run .bashrc (contains bash settings and aliases)
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|