diff --git a/bashrc b/bashrc index b6fea66..94dc114 100644 --- a/bashrc +++ b/bashrc @@ -6,13 +6,13 @@ # common shell utils if [ -d "${HOME}/.commonsh" ] ; then for file in "${HOME}"/.commonsh/* ; do - . $file + . "${file}" done fi # extras if [ -d "${HOME}/.bash" ] ; then for file in "${HOME}"/.bash/* ; do - . $file + . "${file}" done fi diff --git a/kshrc b/kshrc index 68467b0..c57a919 100644 --- a/kshrc +++ b/kshrc @@ -1,11 +1,11 @@ if [ -d "${HOME}/.commonsh" ] ; then for file in "${HOME}"/.commonsh/* ; do - . $file + . "${file}" done fi if [ -d "${HOME}/.ksh" ] ; then for file in "${HOME}"/.ksh/* ; do - . $file + . "${file}" done fi