applied anydot's dmenu_path caching patch, thank you!

This commit is contained in:
Anselm R. Garbe 2007-05-14 11:56:41 +02:00
parent aa2f73fc88
commit 4042a11e51
1 changed files with 26 additions and 5 deletions

View File

@ -1,9 +1,30 @@
#!/bin/sh #!/bin/sh
CACHE=$HOME/.dmenu_cache
UPTODATE=1
IFS=: IFS=:
if test ! -f $CACHE
then
unset UPTODATE
fi
if test $UPTODATE
then
for dir in $PATH
do
test $dir -nt $CACHE && unset UPTODATE
done
fi
if test ! $UPTODATE
then
for dir in $PATH for dir in $PATH
do do
for file in "$dir"/* for file in "$dir"/*
do do
test -x "$file" && echo "${file##*/}" test -x "$file" && echo "${file##*/}"
done done
done | sort | uniq done | sort | uniq > $CACHE
fi
cat $CACHE