diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-08-16 09:39:44 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-08-16 09:44:01 -0400 |
commit | 218e074be676afb77697717eebc0dcc713af2875 (patch) | |
tree | 53d3027f448eb9d5753ceb7ee4c8f0d43ba6fad4 /completions | |
parent | c3f52a2e3c22a8e05b60f94b8344501b14e87794 (diff) | |
download | bfs-218e074be676afb77697717eebc0dcc713af2875.tar.xz |
docs: Document the new -mount vs. -xdev behaviour
Fixes: 33b85e1 ("Implement POSIX 2024's -mount")
Diffstat (limited to 'completions')
-rw-r--r-- | completions/bfs.fish | 2 | ||||
-rw-r--r-- | completions/bfs.zsh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/completions/bfs.fish b/completions/bfs.fish index 0b846f8..7182bee 100644 --- a/completions/bfs.fish +++ b/completions/bfs.fish @@ -42,7 +42,7 @@ complete -c bfs -o ignore_readdir_race -d "Don't report an error if the file tre complete -c bfs -o noignore_readdir_race -d "Report an error if the file tree is modified during the search" complete -c bfs -o maxdepth -d "Ignore files deeper than specified number" -x complete -c bfs -o mindepth -d "Ignore files shallower than specified number" -x -complete -c bfs -o mount -d "Don't descend into other mount points" +complete -c bfs -o mount -d "Exclude mount points" complete -c bfs -o noerror -d "Ignore any errors that occur during traversal" complete -c bfs -o nohidden -d "Exclude hidden files and directories" complete -c bfs -o noleaf -d "Ignored; for compatibility with GNU find" diff --git a/completions/bfs.zsh b/completions/bfs.zsh index 3524d30..3825e09 100644 --- a/completions/bfs.zsh +++ b/completions/bfs.zsh @@ -41,7 +41,7 @@ args=( '*-noignore_readdir_race[do not report an error if bfs detects file tree is modified during search]' '*-maxdepth[ignore files deeper than N]:maximum search depth' '*-mindepth[ignore files shallower than N]:minimum search depth' - "*-mount[don't descend into other mount points]" + "*-mount[exclude mount points]" '*-noerror[ignore any errors that occur during traversal]' '*-nohidden[exclude hidden files]' '*-noleaf[ignored, for compatibility with GNU find]' |