1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/lzop.md

17 lines
358 B
Markdown
Raw Normal View History

2020-01-28 20:12:51 +01: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:
2020-01-28 20:12:51 +01:00
`lzop {{file}}`
- Decompress a file:
`lzop -d {{file}}.lzo`
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
`lzop -{{level}} {{file}}`