Files
tldr/pages.zh/common/lzop.md

16 lines
372 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# lzop
> 使用 LZO 压缩算法压缩或解压缩文件。
> 更多信息:<https://www.lzop.org/>.
- 将文件压缩成一个新的 `.lzo` 后缀的文件:
`lzop {{path/to/file}}`
- 解压缩文件:
`lzop -d {{path/to/file.lzo}}`
- 压缩文件同时指定压缩级别。0 = 最差9 = 最佳(默认级别为 3
`lzop -{{level}} {{path/to/file}}`