#!/usr/local/bin/bash # FILE : dotfiles.core/home/.bash_profile # TARGET: ~/.bash_profile # AUTHOR: tgwil # 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