From 64232883947e37ac64938c8dd0ecd878f1547656 Mon Sep 17 00:00:00 2001
From: Anselm R Garbe <garbeam@gmail.com>
Date: Wed, 9 Apr 2008 23:32:46 +0100
Subject: [PATCH] though sticking to |uniq

---
 dmenu_path | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dmenu_path b/dmenu_path
index a9ddd47..7896a9e 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -19,7 +19,7 @@ then
 		do
 			test -x "$file" && echo "$file"
 		done
-	done | sort -u > "$CACHE".$$ &&
+	done | sort | uniq > "$CACHE".$$ &&
 	mv "$CACHE".$$ "$CACHE"
 fi