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

28
pages.zh/common/b3sum.md Normal file
View File

@@ -0,0 +1,28 @@
# b3sum
> 计算 BLAKE3 加密校验和。
> 更多信息: <https://github.com/BLAKE3-team/BLAKE3/tree/master/b3sum>。
- 计算一个或多个文件的 BLAKE3 校验和:
`b3sum {{path/to/file1 path/to/file2 ...}}`
- 计算并将 BLAKE3 校验和列表保存到文件中:
`b3sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.b3}}`
-`stdin` 计算 BLAKE3 校验和:
`{{command}} | b3sum`
- 读取一个包含 BLAKE3 校验和和文件名的文件,并验证所有文件是否具有匹配的校验和:
`b3sum --check {{path/to/file.b3}}`
- 仅在缺少文件或验证失败时显示消息:
`b3sum --check --quiet {{path/to/file.b3}}`
- 检查文件的已知 BLAKE3 校验和:
`echo {{known_blake3_checksum_of_the_file}} {{path/to/file}} | b3sum --check`