arch, bzip2, command, gunicorn, history, htop, shasum, stty, yes: move translation to correct directories (#5362)

This commit is contained in:
marchersimon
2021-03-07 21:50:02 +01:00
committed by GitHub
parent 6443e6a725
commit 9ffbe151a6
10 changed files with 0 additions and 0 deletions

23
pages.zh/common/shasum.md Normal file
View File

@@ -0,0 +1,23 @@
# shasum
> 计算或检查加密 SHA 校验值.
- 计算文件的 SHA1 校验值:
`shasum {{文件名}}`
- 计算文件的 SHA256 校验值:
`shasum --algorithm 256 {{文件名}}`
- 计算多个文件的 SHA512 校验值:
`shasum --algorithm 512 {{文件名 1}} {{文件名 2}}`
- 计算一个文件内列出的所有的目录文件的相对应的总数:
`shasum --check {{列表文件}}`
- 从标准输入中获取并计算 SHA1 校验值:
`{{其他命令}} | shasum`