Forrest logo
back to context overview

lz4

List of commands for lz4:

  • lz4:ai:94b49 Decompresses the input_file.lz4 and saves the uncompressed data to output_file
    $ lz4 -d input_file.lz4 output_file
    try on your machine
    explain this command
  • lz4:ai:fb14b Decompresses the given LZ4 compressed file
    $ lz4 -d filename.lz4
    try on your machine
    explain this command
  • lz4:tldr:0375a lz4: Decompress a file and write to `stdout`.
    $ lz4 -dc ${file-lz4}
    try on your machine
    explain this command
  • lz4:tldr:64f97 lz4: Compress a file.
    $ lz4 ${filename}
    try on your machine
    explain this command
  • lz4:tldr:a13f1 lz4: Decompress and unpack a directory and its contents.
    $ lz4 -dc ${dir-tar-lz4} | tar -xv
    try on your machine
    explain this command
  • lz4:tldr:f3b3e lz4: Decompress a file.
    $ lz4 -d ${file-lz4}
    try on your machine
    explain this command
  • lz4:tldr:fde77 lz4: Compress a file using the best compression.
    $ lz4 -9 ${filename}
    try on your machine
    explain this command
back to context overview