aboutsummaryrefslogtreecommitdiff
path: root/home/.bash_profile
blob: ee621b33326437cd38bf7ef4b4f3c3cdcd9667b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/local/bin/bash
# FILE  : dotfiles.core/home/.bash_profile
# TARGET: ~/.bash_profile
# AUTHOR: tgwil

# If .bashrc exists, use it
if [[ $- == *i* && -f ~/.bashrc ]]; then
	. ~/.bashrc
fi

# If .bashrc.personal exists, use it.
if [[ $- == *i* && -f ~/.bashrc.personal ]]; then
	  . ~/.bashrc.personal
fi