add fzf for Mac, Windows 10, and Linux
[webi-installers/.git] / fzf / README.md
1 ---
2 title: fzf
3 homepage: https://github.com/junegunn/fzf-bin
4 tagline: |
5   fzf is a general-purpose command-line fuzzy finder.
6 ---
7
8 ### Updating
9
10 ```bash
11 webi fzf@stable
12 ```
13
14 Use the `@beta` tag for pre-releases.
15
16 ## Cheat Sheet
17
18 > It's an interactive Unix filter for command-line that can be used with any
19 > list; files, command history, processes, hostnames, bookmarks, git commits,
20 > logs, etc.
21
22 ### Live filter search results
23
24 ```bash
25 find . | fzf
26 ```
27
28 ### Live filter logs
29
30 ```bash
31 sudo journalctl -u my-app-name  --since '2020-01-01' | fzf
32 ```