2020-01-28 19:12:51 +00:00
|
|
|
# lzop
|
|
|
|
|
|
|
|
> Compress or decompress files with LZO compression.
|
|
|
|
> More information: <https://www.lzop.org/>.
|
|
|
|
|
2021-01-31 17:05:18 +00:00
|
|
|
- Compress a file into a new file with the `.lzo` suffix:
|
2020-01-28 19:12:51 +00:00
|
|
|
|
|
|
|
`lzop {{file}}`
|
|
|
|
|
|
|
|
- Decompress a file:
|
|
|
|
|
|
|
|
`lzop -d {{file}}.lzo`
|
|
|
|
|
2020-12-04 12:37:44 +00:00
|
|
|
- Compress a file, while specifying the compression level. 0 = Worst, 9 = Best (Default level is 3):
|
2020-01-28 19:12:51 +00:00
|
|
|
|
|
|
|
`lzop -{{level}} {{file}}`
|