fzf

CLI>=0.30

A command-line fuzzy finder for files, command history, and more.

11 views

Installation

Homebrewbrew install fzf

Links

License

MIT

AI Agent Notes

Interactive fuzzy finder for any list of items

When to use

Interactive selection from lists in shell pipelines

Examples
  • fzf
  • cat files.txt | fzf

Proven Recipes

Fuzzy-find a file and open it🟢 97% success
vim $(fzf)
Search command history interactively🟢 96% success
history | fzf
Kill a process interactively🟢 90% success
kill $(ps aux | fzf | awk '{print $2}')
⚠ Common failures (1)
  • kills wrong processUse procs or htop for safer interactive kill