aboutsummaryrefslogtreecommitdiff
path: root/home/.bash_profile
blob: 902315e0a3d4581eaa68a73ed6cfb9c9147f5d9a (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
25
26
27
28
29
30
31
32
#!/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.


########################################################################
## PATH
########################################################################
# ~/bin is used for personal scripts and other executables used only
# by this user.
PATH=$PATH:$HOME/bin


########################################################################
## .bashrc (core)
########################################################################
if [[ $- == *i* && -f ~/.bashrc ]]; then
	. ~/.bashrc
fi


########################################################################
## .bashrc.personal
########################################################################
if [[ $- == *i* && -f ~/.bashrc.personal ]]; then
	  . ~/.bashrc.personal
fi