.bash/README

17 lines
222 B
Plaintext
Raw Normal View History

2012-05-18 13:46:36 +04:00
# 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