My Bash config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kolan Sh 3e282953cd
prompt: white on white fxd
1 year ago
README local*.sh added 4 years ago
alias.sh Alises "x", "xt" without nohup. 3 years ago
completion.sh Initial commit 11 years ago
const.sh prompt: white on white fxd 1 year ago
funstions.sh Initial commit 11 years ago
prompt.sh prompt: white on white fxd 1 year ago
scm.sh no hg installed fxd 4 years ago
screen.sh Initial commit 11 years ago
user.sh Email updated. 9 years ago

README

# Create ~/.bash_profile

[[ -f ~/.bashrc ]] && . ~/.bashrc

# Create ~/.bashrc file with contents below.

#!/bin/bash
# ~/.bashrc

BDOTDIR=~/.bash

[ -x $BDOTDIR/const.sh ] && source $BDOTDIR/const.sh
[ -x $BDOTDIR/local_const.sh ] && source $BDOTDIR/local_const.sh
for rc in $BDOTDIR/*.sh
do
    [ -x $rc ] && source $rc
done
unset rc

[ -x $BDOTDIR/local.sh ] && source $BDOTDIR/local.sh

unset BDOTDIR