dots/bashrc
Jacobi Carter ce5a60f62b Fixes
2016-11-03 21:30:53 -07:00

20 lines
422 B
Bash

# ~/.bashrc: executed by bash(1) for non-login shells.
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# common shell utils
if [ -d "${HOME}/.commonsh" ] ; then
for file in "${HOME}"/.commonsh/* ; do
. "${file}"
done
fi
# extras
if [ -d "${HOME}/.bash" ] ; then
for file in "${HOME}"/.bash/* ; do
. "${file}"
done
fi
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting