
1 changed files with 22 additions and 0 deletions
@ -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 |
Loading…
Reference in new issue