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