logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

LZ4 Compressor - Compress and Decompress LZ4 Files | Online Free DevTools by Hexmos

Compress and decompress files with LZ4 Compressor. Efficiently manage LZ4 archives with this command-line utility. Free online tool, no registration required.

lz4

Compress or decompress .lz4 files. More information: https://github.com/lz4/lz4.

  • Compress a file:

lz4 {{path/to/file}}

  • Decompress a file:

lz4 {{[-d|--decompress]}} {{file.lz4}}

  • Decompress a file and write to stdout:

lz4 {{[-dc|--decompress --stdout]}} {{file.lz4}}

  • Package and compress a directory and its contents:

tar cvf - {{path/to/directory}} | lz4 - {{dir.tar.lz4}}

  • Decompress and unpack a directory and its contents:

lz4 {{[-dc|--decompress --stdout]}} {{dir.tar.lz4}} | tar -xv

  • Compress a file using the best compression:

lz4 {{[-12|--best]}} {{path/to/file}}

See Also