diff options
Diffstat (limited to 'home/.bash_profile')
-rw-r--r-- | home/.bash_profile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/home/.bash_profile b/home/.bash_profile index ee621b3..b12cc06 100644 --- a/home/.bash_profile +++ b/home/.bash_profile | |||
@@ -1,13 +1,19 @@ | |||
1 | #!/usr/local/bin/bash | 1 | #!/usr/local/bin/bash |
2 | # | ||
2 | # FILE : dotfiles.core/home/.bash_profile | 3 | # FILE : dotfiles.core/home/.bash_profile |
3 | # TARGET: ~/.bash_profile | 4 | # TARGET: ~/.bash_profile |
4 | # AUTHOR: tgwil | 5 | # AUTHOR: tgwil |
6 | # | ||
7 | # This is run by bash on startup. | ||
8 | # It loads each .bashrc.X file if it exists. | ||
9 | |||
5 | 10 | ||
6 | # If .bashrc exists, use it | 11 | # If .bashrc exists, use it |
7 | if [[ $- == *i* && -f ~/.bashrc ]]; then | 12 | if [[ $- == *i* && -f ~/.bashrc ]]; then |
8 | . ~/.bashrc | 13 | . ~/.bashrc |
9 | fi | 14 | fi |
10 | 15 | ||
16 | |||
11 | # If .bashrc.personal exists, use it. | 17 | # If .bashrc.personal exists, use it. |
12 | if [[ $- == *i* && -f ~/.bashrc.personal ]]; then | 18 | if [[ $- == *i* && -f ~/.bashrc.personal ]]; then |
13 | . ~/.bashrc.personal | 19 | . ~/.bashrc.personal |