255fbdaa7f5b6bbf42d5ce53ffbacfb8083b3cbd
[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 ## Updating
9
10 ```bash
11 webi fd@stable
12 ```
13
14 Use the `@beta` tag for pre-releases.
15
16 ## Cheat Sheet
17
18 ![](https://github.com/sharkdp/fd/raw/master/doc/screencast.svg?sanitize=true)
19
20 > `fd` is a modern, git-aware, syntax-enabled alternative to `find` that handles
21 > unicode, respects `.gitignore`, and ignores hidden directories by default.
22
23 ### Colorized Recursive List
24
25 ```bash
26 fd
27 ```
28
29 ### Case-Insensitive Recursive Search
30
31 Anytime you use only lowercase letters, it's case-insensitive by default.
32
33 ```bash
34 fd foo
35 ```
36
37 ### Case-Sensitive, Showing all ignored and hidden files
38
39 All `.` files and folders, and anything in `.gitignore` are ignored by default.
40
41 ```bash
42 fd -s -I -H foo
43 ```
44
45 ### To show only JavaScript and Markdown files
46
47 Use `-e` as many times as there are extensions that you want to match.
48
49 ```bash
50 fd -e md -e mkdn -e js -e mjs
51 ```
52
53 ### Other options are mostly similar to `find`
54
55 For options see:
56
57 ```bash
58 hexyl --help
59 ```