1[Name] 2igzip \- compress or decompress files similar to gzip 3 4[Description] 5 6Compress or decompress files similar to gzip using the ISA-L fast deflate library. 7 8Output .gz files are compatible with gzip and [RFC-1952]. 9 10Options are similar to gzip except --keep is default. 11 12[Examples] 13 14Make compressed file1.gz and file2.gz and keep file1 and file2. 15.RS 16.B igzip file1 file2 17.RE 18 19Piped compression and decompression. 20.RS 21.B igzip -c file.txt | igzip -d -c - 22.RE 23 24Streaming compression from output of tar, compress level 2. 25.RS 26.B tar cf - dir1 | igzip -2 > dir1.tar.gz 27.RE 28 29[Reporting Bugs] 30 31Report bugs to https://github.com/intel/isa-l/issues 32