From a88d21bd06582f6036d0ee35f08096dbf55bd564 Mon Sep 17 00:00:00 2001 From: Tristan Williams Date: Wed, 9 Oct 2024 23:02:25 -0400 Subject: Add bash configuration files .bash_profile and .bashrc --- home/.bash_profile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 home/.bash_profile (limited to 'home/.bash_profile') diff --git a/home/.bash_profile b/home/.bash_profile new file mode 100644 index 0000000..c2a4763 --- /dev/null +++ b/home/.bash_profile @@ -0,0 +1,8 @@ +#!/usr/local/bin/bash +# ~/.bash_profile +# AUTHOR: tgwil + +# If .bashrc exists, use it +if [[ $- == *i* && -f ~/.bashrc ]]; then + . ~/.bashrc +fi -- cgit v1.2.3