Xinqi Bao's Git

f64c82e67093d3fce4039839a1992175f6ab4c63
[dmenu.git] / dmenu_path
1 #!/bin/sh
2 IFS=:
3 for dir in $PATH
4 do
5 for file in "$dir"/*
6 do
7 test -x "$file" && echo "${file##*/}"
8 done
9 done | sort | uniq