Fixed bug with folder names containing whitespaces

This commit is contained in:
madmaurice 2016-02-18 11:49:18 +01:00
parent cbd56b6bac
commit 4095d48c20

View file

@ -24,23 +24,23 @@ while true; do
echo "$UP";
echo "$OPEN_EXPLORER";
echo "$OPEN_TERMINAL";
ls $DIR;
ls "$DIR";
) | $DMENU -i
)
if [ -z "$choice" ]; then
exit 1
elif [ "$choice" == "$UP" ]; then
DIR=$(dirname $DIR)
DIR=$(dirname "$DIR")
elif [ "$choice" == "$OPEN_EXPLORER" ]; then
($OPEN_CMD "$DIR" &) &
exit 0
elif [ "$choice" == "$OPEN_TERMINAL" ]; then
( cd $DIR; $TERM_CMD &) &
( cd "$DIR"; $TERM_CMD &) &
exit 0
elif [ -f "$DIR/$choice" ]; then
($OPEN_CMD "$DIR/$choice" &) &
exit 0
elif [ -d "$DIR/$choice" ]; then
DIR=$DIR/$choice
DIR="$DIR/$choice"
fi
done