dots/shinit

14 lines
281 B
Text
Raw Normal View History

2009-01-13 01:34:56 -06:00
if [ -d "${HOME}/.commonsh" ] ; then
for file in "${HOME}"/.commonsh/* ; do
2010-11-15 19:24:38 -06:00
. "${file}"
2009-01-13 01:34:56 -06:00
done
fi
if [ -d "${HOME}/.sh" ] ; then
for file in "${HOME}"/.sh/* ; do
2010-11-15 19:24:38 -06:00
. "${file}"
2009-01-13 01:34:56 -06:00
done
fi
2016-11-03 21:30:53 -07:00
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting