Software:Fuzzy finder
From HandWiki
A fuzzy finder is a computer program for performing fuzzy search.[1]
The program reads the list from stdin
, the user interactively filters this, and the program writes the result to stdout
.
Fuzzy finders are often used in combination with Unix commands such as find
, grep
and ls
.
Examples
The following example interactively selects regular files from the current working directory tree and write the result to selected
:[2]
find * -type f | fzf > selected
See also
- String-searching algorithm
References
- ↑ Kili, Aaron (2018-11-08). "Fzf – A Quick Fuzzy File Search from Linux Terminal". Tecmint. https://www.tecmint.com/fzf-fuzzy-file-search-from-linux-terminal/.
- ↑ "Usage". GitHub. https://github.com/junegunn/fzf#usage.
External links