Skip to content

Commit

Permalink
Suggest to use -u instead of -HI
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkdp authored Dec 8, 2023
1 parent 74b850a commit 00b64f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ target/debug/deps/libnum_cpus-f5ce7ef99006aa05.rlib
```

To really search *all* files and directories, simply combine the hidden and ignore features to show
everything (`-HI`).
everything (`-HI`) or use `-u`/`--unrestricted`.

### Matching the full path
By default, *fd* only matches the filename of each file. However, using the `--full-path` or `-p` option,
Expand Down Expand Up @@ -406,9 +406,9 @@ for alternative, more complete (or more colorful) variants, see [here](https://g

Remember that `fd` ignores hidden directories and files by default. It also ignores patterns
from `.gitignore` files. If you want to make sure to find absolutely every possible file, always
use the options `-H` and `-I` to disable these two features:
use the options `-u`/`--unrestricted` option (or `-HI` to enable hidden and ignored files):
``` bash
> fd -HI
> fd -u
```

### `fd` doesn't seem to interpret my regex pattern correctly
Expand Down

0 comments on commit 00b64f3

Please sign in to comment.