From acbeca35f81472bc5c3d0fcefdd7dc63dc677d67 Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Thu, 1 Nov 2007 08:29:23 +0000 Subject: [PATCH] Remove all external dependencies from PATH.bashrc. git-svn-id: https://svn.cambridge.iain.cx/profile/trunk@81 6be0d1a5-5cfe-0310-89b6-964be062b18b --- .profile.d/PATH.bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.profile.d/PATH.bashrc b/.profile.d/PATH.bashrc index 4c5d535..66cd709 100644 --- a/.profile.d/PATH.bashrc +++ b/.profile.d/PATH.bashrc @@ -33,12 +33,12 @@ function makepath() { ' # Read them. path= - for dir in $(cat "$DIR/$dirs"); do + while read dir; do dir=$(eval echo "$dir") [ -d "$dir" ] || continue path="$path:$dir" - done + done < "$DIR/$dirs" unset dir # Restore IFS. -- 2.7.4