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