mirror of
https://github.com/sharkdp/fd
synced 2024-11-05 16:58:21 +00:00
Improve --full-path documentation, closes #839
This commit is contained in:
parent
a539181f1f
commit
21fd013073
1 changed files with 4 additions and 3 deletions
|
@ -228,11 +228,12 @@ pub fn build_app() -> App<'static, 'static> {
|
|||
.long("full-path")
|
||||
.short("p")
|
||||
.overrides_with("full-path")
|
||||
.help("Search full path (default: file-/dirname only)")
|
||||
.help("Search full abs. path (default: filename only)")
|
||||
.long_help(
|
||||
"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.",
|
||||
directory name). Using this flag, the pattern is matched against the full \
|
||||
(absolute) path. Example:\n \
|
||||
fd --glob -p '**/.git/config'",
|
||||
),
|
||||
)
|
||||
.arg(
|
||||
|
|
Loading…
Reference in a new issue