fzf

Command-line fuzzy finder for searching and filtering text interactively

brewmacoslinux
Try with needOr install directly
Source

About

Command-line fuzzy finder written in Go

Commands

fzf

Examples

search for files by name in current directory$ fzf
find and open a file in your editor$ vim $(fzf)
search command history and run a previous command$ fzf --history ~/.bash_history
filter output from another command interactively$ ps aux | fzf
search git branches and checkout one$ git branch | fzf | xargs git checkout