refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / fd / README.md
1 ---
2 title: fd
3 homepage: https://github.com/sharkdp/fd
4 tagline: |
5   fd is a git-aware, simple, fast and user-friendly alternative to find.
6 ---
7
8 To update or switch versions, run `webi fd@stable` (or `@v8.2`, `@beta`, etc).
9
10 ## Cheat Sheet
11
12 ![](https://github.com/sharkdp/fd/raw/master/doc/screencast.svg?sanitize=true)
13
14 > `fd` is a modern, git-aware, syntax-enabled alternative to `find` that handles
15 > unicode, respects `.gitignore`, and ignores hidden directories by default.
16
17 ### Colorized Recursive List
18
19 ```bash
20 fd
21 ```
22
23 ### Case-Insensitive Recursive Search
24
25 Anytime you use only lowercase letters, it's case-insensitive by default.
26
27 ```bash
28 fd foo
29 ```
30
31 ### Case-Sensitive, Showing all ignored and hidden files
32
33 All `.` files and folders, and anything in `.gitignore` are ignored by default.
34
35 ```bash
36 fd -s -I -H foo
37 ```
38
39 ### To show only JavaScript and Markdown files
40
41 Use `-e` as many times as there are extensions that you want to match.
42
43 ```bash
44 fd -e md -e mkdn -e js -e mjs
45 ```
46
47 ### Other options are mostly similar to `find`
48
49 For options see:
50
51 ```bash
52 hexyl --help
53 ```