blob: e10efd585d6acfce6eab3ecff3c891b78c16cdb5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/local/bin/bash
#
# FILE : dotfiles.core/home/.bash_profile
# TARGET: ~/.bash_profile
# AUTHOR: tgwil
#
# This is run by bash on startup.
# It loads each .bashrc.X file if it exists.
########################################################################
## .bashrc (core)
########################################################################
if [[ $- == *i* && -f ~/.bashrc ]]; then
. ~/.bashrc
fi
########################################################################
## .bashrc.personal
########################################################################
if [[ $- == *i* && -f ~/.bashrc.personal ]]; then
. ~/.bashrc.personal
fi
|