dot_testing/sh/tmenu_run

13 lines
219 B
Plaintext
Raw Normal View History

2022-07-05 14:08:31 -05:00
#!/bin/sh
tmenu_path () {
IFS=" :"
for i in $PATH; do
for j in "$i"/*; do
[ -f $j ] && [ -x $j ] && printf "%s\n" $j
done
done
}
tmenu_path | tmenu "$@" | ${SHELL:-"/bin/sh"} &