fzf
CLI>=0.30A command-line fuzzy finder for files, command history, and more.
0 views
Installation
Homebrew
brew install fzfLinks
License
MITAI Agent Notes
Interactive fuzzy finder for any list of items
When to use
Interactive selection from lists in shell pipelines
Examples
fzfcat files.txt | fzf
Proven Recipes
Fuzzy-find a file and open it🟢 97% success
vim $(fzf)Search command history interactively🟢 96% success
history | fzfKill a process interactively🟢 90% success
kill $(ps aux | fzf | awk '{print $2}')⚠ Common failures (1)
- kills wrong process → Use procs or htop for safer interactive kill