.bash/README

17 lines
222 B
Plaintext

# Create ~/.bash_profile
[[ -f ~/.bashrc ]] && . ~/.bashrc
# Create ~/.bashrc file with contents below.
#!/bin/bash
BDOTDIR=~/.bash
source $BDOTDIR/constants.sh
for rc in $BDOTDIR/*.sh
do
source $rc
done
unset rc