pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b5b580
)
using the old-style fashion we uses earlier
author
Anselm R. Garbe
<arg@suckless.org>
Fri, 23 Feb 2007 14:28:25 +0000
(15:28 +0100)
committer
Anselm R. Garbe
<arg@suckless.org>
Fri, 23 Feb 2007 14:28:25 +0000
(15:28 +0100)
dmenu_path
patch
|
blob
|
history
diff --git
a/dmenu_path
b/dmenu_path
index
4008f4c
..
4ecf4fa
100755
(executable)
--- a/
dmenu_path
+++ b/
dmenu_path
@@
-1,2
+1,9
@@
#!/bin/sh
-/bin/ls -lL `echo $PATH | tr : ' '` 2> /dev/null | awk '$1 ~ /^[^d].*x/ { print $NF }' | sort -u
+IFS=:
+for dir in $PATH
+do
+ for file in "$dir"/*
+ do
+ test -x "$file" && echo "${file##*/}"
+ done
+done | sort -u