This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
dmenu
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
using the old-style fashion we uses earlier
master
Anselm R. Garbe
18 years ago
parent
6b5b580aff
commit
007be12f2b
1 changed files
with
8 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-1
dmenu_path
+ 8
- 1
dmenu_path
View File
@ -1,2 +1,9 @@
#!/bin/sh
#!/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
Write
Preview
Loading…
Cancel
Save