]> git.armaanb.net Git - dmenu.git/commitdiff
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 4008f4ce96f83cc5f4b1feeeaa5b2cb419f75ab4..4ecf4faa957e6e15b3d90c92dfbb10c2e1e4d08a 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