refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / fzf / README.md
1 ---
2 title: fzf
3 homepage: https://github.com/junegunn/fzf
4 tagline: |
5   fzf is a general-purpose command-line fuzzy finder.
6 ---
7
8 To update or switch versions, run `webi fzf@stable` (or `@v0.23`, `@beta`, etc).
9
10 ## Cheat Sheet
11
12 ![](https://raw.githubusercontent.com/junegunn/i/master/fzf-preview.png)
13
14 > It's an interactive Unix filter for command-line that can be used with any
15 > list; files, command history, processes, hostnames, bookmarks, git commits,
16 > logs, etc.
17
18 ### Live filter search results
19
20 ```bash
21 find . | fzf
22 ```
23
24 ### Live filter logs
25
26 ```bash
27 sudo journalctl -u my-app-name  --since '2020-01-01' | fzf
28 ```
29
30 ### Use space-delimited regular expressions to search
31
32 ```txt
33 ^README | .md$ | .txt$
34 ```