summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <sharkdp@users.noreply.github.com>2023-12-08 13:37:03 +0100
committerGitHub <noreply@github.com>2023-12-08 13:37:03 +0100
commit00b64f3ccbfb832ef744bb42bbdfabaf929b5ee2 (patch)
treee9e45dad270eb3485f34b62f93a5b1072f3e5e12
parent74b850a642b6a2c50af09205c9876b4727fbe740 (diff)
Suggest to use `-u` instead of `-HI`
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index dc16cb6..3611e87 100644
--- a/README.md
+++ b/README.md
@@ -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,
@@ -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