xz: add Chinese translation (#12708)

pull/28/head
Red Guard 2024-05-09 03:13:00 +08:00 committed by GitHub
parent 70cc86cc9f
commit fc5ecbe89e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 36 additions and 0 deletions

36
pages.zh/common/xz.md Normal file
View File

@ -0,0 +1,36 @@
# xz
> 解压缩 XZ 和 LZMA 文件。
> 更多信息:<https://manned.org/xz>.
- 使用 xz 压缩文件:
`xz {{路径/到/文件}}`
- 解压 XZ 文件:
`xz --decompress {{路径/到/文件.xz}}`
- 使用 lzma 压缩文件:
`xz --format=lzma {{路径/到/文件}}`
- 解压 LZMA 文件:
`xz --decompress --format=lzma {{路径/到/文件.lzma}}`
- 解压文件并输出到 `stdout`(暗示 `--keep`
`xz --decompress --stdout {{路径/到/文件.xz}}`
- 压缩文件但不删除原文件:
`xz --keep {{路径/到/文件}}`
- 使用最快方式压缩文件:
`xz -0 {{路径/到/文件}}`
- 使用最好方式压缩文件:
`xz -9 {{路径/到/文件}}`