choose-gui

Fuzzy matcher with native GUI for interactive selection from stdin

brewmacoslinux
Try with needOr install directly
Source

About

Fuzzy matcher that uses std{in,out} and a native GUI

Commands

choose-gui

Examples

Select a file from current directory$ ls | choose-gui
Pick a running process to kill$ ps aux | choose-gui | awk '{print $2}' | xargs kill
Select a git branch to checkout$ git branch | choose-gui | xargs git checkout