Forrest logo
back to context overview

lzip

List of commands for lzip:

  • lzip:tldr:1b95b lzip: Archive a file at the fastest speed (level=0).
    $ lzip -k ${filename} --fast
    try on your machine
    explain this command
  • lzip:tldr:2671a lzip: Decompress a file, replacing it with the original uncompressed version.
    $ lzip -d ${path-to-archive-lz}
    try on your machine
    explain this command
  • lzip:tldr:34595 lzip: Archive a file, keeping the input file.
    $ lzip -k ${filename}
    try on your machine
    explain this command
  • lzip:tldr:3983c lzip: Archive a file, replacing it with with a compressed version.
    $ lzip ${filename}
    try on your machine
    explain this command
  • lzip:tldr:8554a lzip: Archive a file with the best compression (level=9).
    $ lzip -k ${filename} --best
    try on your machine
    explain this command
  • lzip:tldr:ac595 lzip: Decompress a file, keeping the archive.
    $ lzip -d -k ${path-to-archive-lz}
    try on your machine
    explain this command
  • lzip:tldr:b4b3f lzip: List files which are in an archive and show compression stats.
    $ lzip --list ${path-to-archive-lz}
    try on your machine
    explain this command
  • lzip:tldr:c1551 lzip: Test the integrity of compressed file.
    $ lzip --test ${path-to-archive-lz}
    try on your machine
    explain this command
back to context overview