lzip
A lossless data compressor with a user interface similar to `gzip` or `bzip2`. Lzip uses a simplified form of the "Lempel-Ziv-Markovchain-Algorithm" (LZMA) stream format and provides 3-factor integrity checking to maximize interoperability and optimize safety.
More info →Options (4)
-k, --keepbooleanArchive a file, keeping the input file
lzip {{[-k|--keep]}} {{path/to/file}}-t, --testbooleanTest the integrity of compressed file
lzip {{[-t|--test]}} {{path/to/archive.lz}}-d, --decompressbooleanDecompress a file, replacing it with the original uncompressed version
lzip {{[-d|--decompress]}} {{path/to/archive.lz}}-l, --listbooleanList files which are in an archive and show compression stats
lzip {{[-l|--list]}} {{path/to/archive.lz}}Examples (8)
Archive a file, replacing it with a compressed version
lzip path/to/fileArchive a file, keeping the input file
lzip [-k|--keep] path/to/fileArchive a file with the best compression (level=9)
lzip [-k|--keep] path/to/file --bestArchive a file at the fastest speed (level=0)
lzip [-k|--keep] path/to/file --fastTest the integrity of compressed file
lzip [-t|--test] path/to/archive.lzDecompress a file, replacing it with the original uncompressed version
lzip [-d|--decompress] path/to/archive.lzDecompress a file, keeping the archive
lzip [-d|--decompress] [-k|--keep] path/to/archive.lzList files which are in an archive and show compression stats
lzip [-l|--list] path/to/archive.lz