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

32
pages.zh/common/bzip2.md Normal file
View File

@@ -0,0 +1,32 @@
# bzip2
> 一种块排序文件压缩工具。
> 更多信息:<https://manned.org/bzip2>。
- 压缩文件:
`bzip2 {{path/to/file_to_compress}}`
- [d]解压文件:
`bzip2 -d {{path/to/compressed_file.bz2}}`
- [d]解压文件到 `stdout`
`bzip2 -dc {{path/to/compressed_file.bz2}}`
- 测试归档文件内每个文件的完整性:
`bzip2 --test {{path/to/compressed_file.bz2}}`
- 显示处理过的每个文件的压缩比及详细信息:
`bzip2 --verbose {{path/to/compressed_files.bz2}}`
- 解压文件并覆盖现有文件:
`bzip2 --force {{path/to/compressed_file.bz2}}`
- 显示帮助信息:
`bzip2 -h`