From 28b6ea0f67ee02b0ff04a267671a255b47c21559 Mon Sep 17 00:00:00 2001
From: "Anselm R. Garbe" <arg@suckless.org>
Date: Sat, 24 Feb 2007 15:38:10 +0100
Subject: [PATCH] I also dislike sort -u, I support that each Unix tool does
 one job and does it right ;)

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

diff --git a/dmenu_path b/dmenu_path
index 4ecf4fa..f64c82e 100755
--- a/dmenu_path
+++ b/dmenu_path
@@ -6,4 +6,4 @@ do
 	do
 		test -x "$file" && echo "${file##*/}"
 	done
-done | sort -u
+done | sort | uniq