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

View File

@@ -0,0 +1,32 @@
# sha256sum
> 计算SHA256加密校验和。
> 更多信息:<https://www.gnu.org/software/coreutils/manual/html_node/sha2-utilities.html>。
- 计算一个或多个文件的SHA256校验和
`sha256sum {{path/to/file1 path/to/file2 ...}}`
- 计算并将SHA256校验和列表保存到文件中
`sha256sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.sha256}}`
-`stdin`计算SHA256校验和
`{{command}} | sha256sum`
- 读取一个包含SHA256校验和和文件名的文件并验证所有文件的校验和是否匹配
`sha256sum --check {{path/to/file.sha256}}`
- 仅在缺少文件或验证失败时显示消息:
`sha256sum --check --quiet {{path/to/file.sha256}}`
- 仅在验证失败时显示消息,忽略缺少的文件:
`sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}`
- 检查已知文件的SHA256校验和
`echo {{known_sha256_checksum_of_the_file}} {{path/to/file}} | sha256sum --check`