mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
fddcb00eb0
Change-Id: I57f9d51513adfbdc679e09a3d3f9690a7f04bb93 Signed-off-by: Ondřej Nový <ondrej.novy@firma.seznam.cz>
32 lines
646 B
Plaintext
32 lines
646 B
Plaintext
[Name]
|
|
igzip \- compress or decompress files similar to gzip
|
|
|
|
[Description]
|
|
|
|
Compress or decompress files similar to gzip using the ISA-L fast deflate library.
|
|
|
|
Output .gz files are compatible with gzip and [RFC-1952].
|
|
|
|
Options are similar to gzip except --keep is default.
|
|
|
|
[Examples]
|
|
|
|
Make compressed file1.gz and file2.gz and keep file1 and file2.
|
|
.RS
|
|
.B igzip file1 file2
|
|
.RE
|
|
|
|
Piped compression and decompression.
|
|
.RS
|
|
.B igzip -c file.txt | igzip -d -c -
|
|
.RE
|
|
|
|
Streaming compression from output of tar, compress level 2.
|
|
.RS
|
|
.B tar cf - dir1 | igzip -2 > dir1.tar.gz
|
|
.RE
|
|
|
|
[Reporting Bugs]
|
|
|
|
Report bugs to https://github.com/01org/isa-l/issues
|