https://bugs.exim.org/show_bug.cgi?id=2515

Git Commit <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Git Commit <[email protected]> ---
Git commit:
https://git.exim.org/exim.git/commitdiff/4f252517dc0e8eda6c1eb1031ac0bcd29b6a7a93

commit 4f252517dc0e8eda6c1eb1031ac0bcd29b6a7a93
Author:     Arkadiusz MiÅkiewicz <[email protected]>
AuthorDate: Thu Jan 23 08:51:01 2020 +0100
Commit:     Heiko Schlittermann (HS12-RIPE) <[email protected]>
CommitDate: Thu Jan 23 22:15:11 2020 +0100

    Add support for zstd compressed .zst files (Bug 2515)
---
 src/src/exigrep.src | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/src/exigrep.src b/src/src/exigrep.src
index afd3538..835766f 100644
--- a/src/src/exigrep.src
+++ b/src/src/exigrep.src
@@ -159,7 +159,8 @@ my $compressors = {
   gz   => { cmd => 'zcat',  args => '' },
   bz2  => { cmd => 'bzcat', args => '' },
   xz   => { cmd => 'xzcat', args => '' },
-  lzma => { cmd => 'lzma',  args => '-dc' }
+  lzma => { cmd => 'lzma',  args => '-dc' },
+  zst  => { cmd => 'zstdcat', args => '' },
 };
 my $csearch = 0;

@@ -313,8 +314,8 @@ given host, for example.

 If no file names are given on the command line, the standard input is read.

-For known file extensions indicating compression (F<.gz>, F<.bz2>, F<.xz>, and
F<.lzma>)
-a suitable de-compressor is used, if available.
+For known file extensions indicating compression (F<.gz>, F<.bz2>, F<.xz>,
+F<.lzma>, and F<.zst>) a suitable de-compressor is used, if available.

 The output is sent through a pager if a terminal is connected to STDOUT. As
 pager are considered: C<$ENV{PAGER}>, C<less>, C<more>.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-- 
## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim 
details at http://www.exim.org/ ##

Reply via email to