From 2fc00fab9c71934fde3411539fab0315aa06ab65 Mon Sep 17 00:00:00 2001 From: Tristan Williams Date: Sat, 12 Oct 2024 06:56:19 -0400 Subject: Fix comments and formatting --- home/.bash_profile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'home/.bash_profile') 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 @@ #!/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 -- cgit v1.2.3