tldr/pages/common/lzop.md

17 lines
356 B
Markdown
Raw Normal View History

2020-01-28 19:12:51 +00:00
# lzop
> Compress or decompress files with LZO compression.
> More information: <https://www.lzop.org/>.
- Compress a file into a new file with the .lzo suffix:
`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}}`