LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

lzop

compresses files using the LZO library

TLDR

Compress file
$ lzop [file]
copy
Decompress file
$ lzop -d [file.lzo]
copy
Keep original file
$ lzop -k [file]
copy
Compress with maximum compression
$ lzop -9 [file]
copy
Test archive integrity
$ lzop -t [file.lzo]
copy
Compress to stdout
$ lzop -c [file]
copy
Compress and delete original file
$ lzop -U [file]
copy

SYNOPSIS

lzop [options] [file...]

DESCRIPTION

lzop compresses files using the LZO library. Emphasizes speed over compression ratio. Very fast compression and decompression, suitable for real-time applications. Files have .lzo extension.

PARAMETERS

-d, --decompress

Decompress files.
-k, --keep
Keep input files.
-c, --stdout
Write to standard output.
-t, --test
Test archive integrity.
-1 to -9
Compression level (default: -3).
-f, --force
Force overwrite of existing files.
-U
Delete input files after successful compression or decompression.
-v, --verbose
Display the name for each file compressed or decompressed.
-o FILE, --output=FILE
Write output to the specified file.
-p DIR, --path=DIR
Write output files into the specified directory.
-F, --no-checksum
Do not store or verify a checksum of the uncompressed data.

SEE ALSO

gzip(1), bzip2(1), lzip(1), xz(1), zstd(1)

Copied to clipboard
Kai