diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-24 15:38:10 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-24 15:38:10 +0100 |
commit | 28b6ea0f67ee02b0ff04a267671a255b47c21559 (patch) | |
tree | 48b50c8e8bcda3d394f1461616712c81642eea06 /dmenu_path | |
parent | removed superfluous externs as well (diff) | |
download | dmenu-28b6ea0f67ee02b0ff04a267671a255b47c21559.tar.gz dmenu-28b6ea0f67ee02b0ff04a267671a255b47c21559.tar.bz2 dmenu-28b6ea0f67ee02b0ff04a267671a255b47c21559.zip |
I also dislike sort -u, I support that each Unix tool does one job and does it right ;)
Diffstat (limited to 'dmenu_path')
-rwxr-xr-x | dmenu_path | 2 |
1 files changed, 1 insertions, 1 deletions
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 |