scripts

shell scripts
git clone git://git.bitsmanent.org/scripts
Log | Files | Refs | README

commit 12645a5a78087fbf7fc6d99ec018a60473e0f190
parent 8c8ac94346339a74ff4fc56ae0a86cbf8afa5e6a
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Fri, 22 Jan 2016 09:44:32 +0100

Remove dot from listing, again.
This was already working before the previous commit which broken it

Diffstat:
Msrc/browse | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/browse b/src/browse @@ -5,7 +5,7 @@ target="$1" [ -z "$target" ] && target="$(realpath .)" while true; do - sel="$(ls -1a "$target" |grep -v '^\.\/$' | dmenu -p "$target" -l 25)" + sel="$(ls -1a "$target" |grep -v '^\.$' | dmenu -p "$target" -l 25)" ec=$? [ "$ec" -ne 0 ] && exit $ec