From d6435e46585d71927426a5216d6598225ca7c8ed Mon Sep 17 00:00:00 2001 From: nemetho Date: Sat, 20 Jan 2018 11:38:16 +0100 Subject: [PATCH] correct one of many space containing filename process (spaces in filenames in 'most' scripts are not handled [yet] - some scripts may not handle it) --- scripts/_du_dirs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_du_dirs.sh b/scripts/_du_dirs.sh index 22a3682..1154018 100644 --- a/scripts/_du_dirs.sh +++ b/scripts/_du_dirs.sh @@ -2,7 +2,7 @@ if [ ! -z "$1" ]; then DIR="$1" [ ! -d "$DIR" ] && echo "No such directory" && exit 1 - cd $DIR + cd "$DIR" fi if [ $bytes ]; then -- 2.11.4.GIT