dotfiles/bin/fzf-menu

5 lines
166 B
Plaintext
Raw Normal View History

2024-06-23 19:39:49 +02:00
#!/bin/sh
setsid -f $(echo "$PATH" | tr ":" "\n" | xargs -I{} find -L {} -maxdepth 1 -mindepth 1 -type f -executable -printf '%P\n' 2>/dev/null | sort -u | fzf)