using the old-style fashion we uses earlier
authorAnselm R. Garbe <arg@suckless.org>
Fri, 23 Feb 2007 14:28:25 +0000 (15:28 +0100)
committerAnselm R. Garbe <arg@suckless.org>
Fri, 23 Feb 2007 14:28:25 +0000 (15:28 +0100)
dmenu_path

index 4008f4c..4ecf4fa 100755 (executable)
@@ -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