From 1de51a800cc30c7336b62490cedb21fce83d0bff Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 11 May 2021 14:44:42 +0200 Subject: [PATCH] add main script (.bash_profile) --- .bash_profile.main | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .bash_profile.main diff --git a/.bash_profile.main b/.bash_profile.main new file mode 100644 index 0000000..d7b3590 --- /dev/null +++ b/.bash_profile.main @@ -0,0 +1,22 @@ +#!/bin/bash +echo "HeckBashSetup init..." + +echo -ne '\033[1;32m' +echo "Greetings $LOGNAME" + +echo -ne "\033[0;34m" + +for f in ~/HeckBashSetup/bash_profile.d/*; do + echo sourcing $f + source $f +done + + +VERBOSE=false + +if [[ $VERBOSE == true ]]; then { + echo "Aliases:" + alias + echo "Functions:" + declare -F +} fi