fzy

Fast fuzzy text selector for filtering lists interactively

brewmacoslinux
Try with needOr install directly
Source

About

Fast, simple fuzzy text selector with an advanced scoring algorithm

Commands

fzy

Examples

search and select from command history$ history | fzy
find and open a file in current directory$ find . -type f | fzy
pick a git branch to switch to$ git branch | fzy | xargs git checkout
filter process list and kill a process$ ps aux | fzy | awk '{print $2}' | xargs kill
select from list of environment variables$ env | cut -d= -f1 | fzy