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

External links

  • fzf - a general-purpose command-line fuzzy finder written in Go.