1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:22:08 +02:00

sha256sum: add example (#14819)

This commit is contained in:
Trần Đình Đồng 2024-11-18 16:51:29 +07:00 committed by GitHub
parent 35239955b4
commit 88ec1e13ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,3 +26,7 @@
- Only show a message when verification fails, ignoring missing files: - Only show a message when verification fails, ignoring missing files:
`sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}` `sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}`
- Check known SHA256 sum of a file:
`echo {{known-sha256-sum-of-the-file}} {{path/to/file}} | sha256sum --check`