aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-04-09 23:32:46 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-04-09 23:32:46 +0100
commit64232883947e37ac64938c8dd0ecd878f1547656 (patch)
treec9a728e8d476e0186e9ea573df493df97bb1a862
parent7195e941c1cb91e347a9c906203ad39245deabd6 (diff)
though sticking to |uniq
-rwxr-xr-xdmenu_path2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu_path b/dmenu_path
index a9ddd47..7896a9e 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -19,7 +19,7 @@ then
19 do 19 do
20 test -x "$file" && echo "$file" 20 test -x "$file" && echo "$file"
21 done 21 done
22 done | sort -u > "$CACHE".$$ && 22 done | sort | uniq > "$CACHE".$$ &&
23 mv "$CACHE".$$ "$CACHE" 23 mv "$CACHE".$$ "$CACHE"
24fi 24fi
25 25