From e0d3c99e0df0a99ac93062d81540d717243dbbf9 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Mon, 31 May 2010 15:40:50 -0700 Subject: [PATCH] add some comments to "bashrc" --- bashrc | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/bashrc b/bashrc index ddef8da..b6fea66 100644 --- a/bashrc +++ b/bashrc @@ -3,14 +3,16 @@ # 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 + for file in "${HOME}"/.commonsh/* ; do + . $file + done fi +# extras if [ -d "${HOME}/.bash" ] ; then - for file in "${HOME}"/.bash/* ; do - . $file - done + for file in "${HOME}"/.bash/* ; do + . $file + done fi