.bash/README

23 lines
406 B
Plaintext
Raw Permalink 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
2019-06-17 12:11:08 +03:00
# ~/.bashrc
2012-05-18 13:46:36 +04:00
BDOTDIR=~/.bash
2019-06-17 12:11:08 +03:00
[ -x $BDOTDIR/const.sh ] && source $BDOTDIR/const.sh
[ -x $BDOTDIR/local_const.sh ] && source $BDOTDIR/local_const.sh
2012-05-18 13:46:36 +04:00
for rc in $BDOTDIR/*.sh
do
2019-06-17 12:11:08 +03:00
[ -x $rc ] && source $rc
2012-05-18 13:46:36 +04:00
done
unset rc
2019-06-17 12:11:08 +03:00
[ -x $BDOTDIR/local.sh ] && source $BDOTDIR/local.sh
unset BDOTDIR