Skip to content

Instantly share code, notes, and snippets.

@slindberg
slindberg / .bashrc
Created January 20, 2011 19:28
Custom bash config (somewhat OS X specific)
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# run Homebrew profile scripts
for script in /usr/local/etc/profile.d/*.sh; do
if [ -r $script ]; then
. $script
fi
done