add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/gunzip.md Normal file
View File

@@ -0,0 +1,24 @@
# gunzip
> 从 `gzip` (`.gz`) 压缩包中提取文件。
> 更多信息:<https://manned.org/gunzip>。
- 从压缩包中提取文件,如存在则替换原文件:
`gunzip {{archive.tar.gz}}`
- 将文件提取到目标位置:
`gunzip --stdout {{archive.tar.gz}} > {{archive.tar}}`
- 提取文件并保留压缩包:
`gunzip --keep {{archive.tar.gz}}`
- 列出压缩文件的内容:
`gunzip --list {{file.txt.gz}}`
-`stdin` 解压缩压缩包:
`cat {{path/to/archive.gz}} | gunzip`