diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-08-16 09:24:30 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-08-16 09:33:34 -0400 |
commit | c3f52a2e3c22a8e05b60f94b8344501b14e87794 (patch) | |
tree | 6d5c3d6fec021ba5814443e44b971e59ed5157e9 /completions/bfs.fish | |
parent | e130daf99c1828c554c27d546274712624b81faa (diff) | |
download | bfs-c3f52a2e3c22a8e05b60f94b8344501b14e87794.tar.xz |
New -noerror option to suppress error messages
Closes: https://github.com/tavianator/bfs/issues/142
Diffstat (limited to 'completions/bfs.fish')
-rw-r--r-- | completions/bfs.fish | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/completions/bfs.fish b/completions/bfs.fish index 24b0ad9..0b846f8 100644 --- a/completions/bfs.fish +++ b/completions/bfs.fish @@ -43,6 +43,7 @@ complete -c bfs -o noignore_readdir_race -d "Report an error if the file tree is 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 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" complete -c bfs -o regextype -d "Use specified flavored regex" -a $regex_type_comp -x |