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