#!/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