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