dots/bashrc
David Alexander Majnemer 2f7f5c16ef Merge branch 'master' of gitosis@majnematic.com:davesdots
Conflicts:
	bashrc
	commonsh/02_term
	commonsh/10_alias
	commonsh/10_rlwrap
2009-01-13 17:30:04 -05:00

16 lines
340 B
Bash

# ~/.bashrc: executed by bash(1) for non-login shells.
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
if [ -d "${HOME}/.commonsh" ] ; then
for file in "${HOME}"/.commonsh/* ; do
. $file
done
fi
if [ -d "${HOME}/.bash" ] ; then
for file in "${HOME}"/.bash/* ; do
. $file
done
fi