summaryrefslogtreecommitdiffstats
path: root/src/app.rs
diff options
context:
space:
mode:
authordana <dana@dana.is>2018-11-03 15:50:27 -0500
committerAndrew Gallant <jamslam@gmail.com>2019-01-22 20:56:16 -0500
commit0b04553affdb4e15ffd4ef2a29840cad3fc4fc7a (patch)
tree4c049fa07fdfe2de1c1d321b060a8063954ec911 /src/app.rs
parent1ae121122f670e95dc6b5a006c5d2a25cbc7eaa2 (diff)
grep-cli: support Brotli/Zstd decompression
Fixes #1099
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app.rs b/src/app.rs
index 037feec3..8639262f 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -2021,9 +2021,9 @@ This flag can be used with the -o/--only-matching flag.
fn flag_search_zip(args: &mut Vec<RGArg>) {
const SHORT: &str = "Search in compressed files.";
const LONG: &str = long!("\
-Search in compressed files. Currently gz, bz2, xz, lzma and lz4 files are
-supported. This option expects the decompression binaries to be available in
-your PATH.
+Search in compressed files. Currently gzip, bzip2, xz, LZ4, LZMA, Brotli and
+Zstd files are supported. This option expects the decompression binaries to be
+available in your PATH.
This flag can be disabled with --no-search-zip.
");