selecta

Fuzzy text selector for files and interactive command output

brewmacoslinux
Try with needOr install directly
Source

About

Fuzzy text selector for files and anything else you need to select

Commands

selecta

Examples

Select a file from current directory and open it in editor$ find . -type f | selecta | xargs vim
Select and checkout a git branch$ git branch | selecta | xargs git checkout
Select a process to kill by name$ ps aux | selecta | awk '{print $2}' | xargs kill