diff options
author | Kris Maglione <jg@suckless.org> | 2007-05-23 16:59:38 -0400 |
---|---|---|
committer | Kris Maglione <jg@suckless.org> | 2007-05-23 16:59:38 -0400 |
commit | 383e40dc21ec7a2d484314199ea930f09f86dd77 (patch) | |
tree | b7f7566ac8a82f34550e11d181756ab40469ead7 | |
parent | 8369e1736b4778e766f55d5476bbbd38a8b46331 (diff) |
Fix grouping in dmenu_path.
-rwxr-xr-x | dmenu_path | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ if ! uptodate | |||
16 | then | 16 | then |
17 | { | 17 | { |
18 | echo "$PATH" | 18 | echo "$PATH" |
19 | qfind $PATH -type f -maxdepth 1 -perm -u+x -o -perm -g+x -o -perm -o+x | | 19 | qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' | |
20 | sed 's,.*/,,' | sort | uniq | 20 | sed 's,.*/,,' | sort | uniq |
21 | } > $CACHE.$pid | 21 | } > $CACHE.$pid |
22 | mv $CACHE.$pid $CACHE | 22 | mv $CACHE.$pid $CACHE |