diff options
| author | Anselm R Garbe <[email protected]> | 2008-04-09 23:32:46 +0100 |
|---|---|---|
| committer | Anselm R Garbe <[email protected]> | 2008-04-09 23:32:46 +0100 |
| commit | 64232883947e37ac64938c8dd0ecd878f1547656 (patch) | |
| tree | c9a728e8d476e0186e9ea573df493df97bb1a862 | |
| parent | re-applied Peter Hartlich's and Jukkas dmenu-related patches, for odd reasons... (diff) | |
| download | dmenu-64232883947e37ac64938c8dd0ecd878f1547656.tar.gz dmenu-64232883947e37ac64938c8dd0ecd878f1547656.tar.bz2 dmenu-64232883947e37ac64938c8dd0ecd878f1547656.zip | |
though sticking to |uniq
| -rwxr-xr-x | dmenu_path | 2 |
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 do test -x "$file" && echo "$file" done - done | sort -u > "$CACHE".$$ && + done | sort | uniq > "$CACHE".$$ && mv "$CACHE".$$ "$CACHE" fi |