diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-05-24 10:34:44 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-05-24 10:34:44 +0200 |
commit | 3a9f3a51ce25717813da7321d4771dca11a25af8 (patch) | |
tree | 5d0f036bcd5236fe8bcd82c5ad73998b11019eac | |
parent | 53e92b5c1797ae5d259942b0a3f20a63c1a02f1e (diff) |
I agree with the race fix of JG, but I dislike the SUSV3-breaking find, and I don't care about PATH changes, keep it simple, stupid
-rwxr-xr-x | dmenu_path | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -1,26 +1,26 @@ | |||
1 | #!/bin/sh -f | 1 | #!/bin/sh |
2 | CACHE=$HOME/.dmenu_cache | 2 | CACHE=$HOME/.dmenu_cache |
3 | IFS=: | 3 | IFS=: |
4 | 4 | ||
5 | qfind() { | 5 | uptodate() { |
6 | find "$@" 2>/dev/null | 6 | test ! -f $CACHE && return 1 |
7 | } | 7 | for dir in $PATH |
8 | 8 | do | |
9 | uptodate() { | 9 | test $dir -nt $CACHE && return 1 |
10 | test -f $CACHE && | 10 | done |
11 | test "$(echo "$PATH")" = "$(sed 1q "$CACHE")" && | 11 | return 0 |
12 | ! qfind $PATH -maxdepth 0 -newer $CACHE >/dev/null | ||
13 | } | 12 | } |
14 | 13 | ||
15 | if ! uptodate | 14 | if ! uptodate |
16 | then | 15 | then |
17 | { | 16 | for dir in $PATH |
18 | echo "$PATH" | 17 | do |
19 | qfind $PATH -type f -maxdepth 1 '(' -perm -u+x -o -perm -g+x -o -perm -o+x ')' | | 18 | for file in "$dir"/* |
20 | sed 's,.*/,,' | sort | uniq | 19 | do |
21 | } | 20 | test -x "$file" && echo "${file##*/}" |
22 | mv $CACHE.$pid $CACHE | 21 | done |
22 | done | sort | uniq > $CACHE.$$ | ||
23 | mv $CACHE.$$ $CACHE | ||
23 | fi | 24 | fi |
24 | 25 | ||
25 | tail -n +2 $CACHE | 26 | cat $CACHE |
26 | |||