diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-13 17:00:17 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-14 18:31:16 +0200 |
commit | 109f1913d4824c8214d5bbd38ebebf62c37572da (patch) | |
tree | 2fccdb7a3e79699118d9d1c938c096ded8718ec3 /src/scripts/xzgrep.in | |
parent | liblzma: Choose the range decoder variants using a bitmask macro. (diff) | |
download | xz-109f1913d4824c8214d5bbd38ebebf62c37572da.tar.xz |
Scripts: Add lz4 support to xzgrep and xzdiff.
Diffstat (limited to 'src/scripts/xzgrep.in')
-rw-r--r-- | src/scripts/xzgrep.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scripts/xzgrep.in b/src/scripts/xzgrep.in index 6e3d8d7e..74add3e0 100644 --- a/src/scripts/xzgrep.in +++ b/src/scripts/xzgrep.in @@ -181,6 +181,7 @@ for i; do *[-.]bz2 | *[-.]tbz | *.tbz2) uncompress="bzip2 -cdf";; *[-.]lzo | *[-.]tzo) uncompress="lzop -cdf";; *[-.]zst | *[-.]tzst) uncompress="zstd -cdfq";; # zstd needs -q. + *[-.]lz4) uncompress="lz4 -cdf";; *) uncompress="$xz -cdfqQ";; # -qQ to ignore warnings like unsupp. check. esac # xz_status will hold the decompressor's exit status. |