1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
ecs-123:/data/linux_dev_blog# fd --help
fd 7.4.0
USAGE:
fd [FLAGS/OPTIONS] [<pattern>] [<path>...]
FLAGS:
-H, --hidden
Include hidden directories and files in the search results (default: hidden files and directories are skipped). Files and directories are considered to be hidden if their name starts with a `.` sign (dot).
-I, --no-ignore
Show search results from files and directories that would otherwise be ignored by '.gitignore', '.ignore' or '.fdignore' files.
--no-ignore-vcs
Show search results from files and directories that would otherwise be ignored by '.gitignore' files.
-s, --case-sensitive
Perform a case-sensitive search. By default, fd uses case-insensitive searches, unless the pattern contains an uppercase character (smart case).
-i, --ignore-case
Perform a case-insensitive search. By default, fd uses case-insensitive searches, unless the pattern contains an uppercase character (smart case).
-g, --glob
Perform a glob-based search instead of a regular expression search.
--regex
Perform a regular-expression based seach (default). This can be used to override --glob.
-F, --fixed-strings
Treat the pattern as a literal string instead of a regular expression.
-a, --absolute-path
Shows the full path starting from the root as opposed to relative paths.
-L, --follow
By default, fd does not descend into symlinked directories. Using this flag, symbolic links are also traversed.
-p, --full-path
By default, the search pattern is only matched against the filename (or directory name). Using this flag, the pattern is matched against the full path.
-0, --print0
Separate search results by the null character (instead of newlines). Useful for piping results to 'xargs'.
--show-errors
Enable the display of filesystem errors for situations such as insufficient permissions or dead symlinks.
-h, --help
Prints help information
-V, --version
Prints version information
|