1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/shasum.md
Miles Glapa-Grossklag df745b0cdc shasum: fix file names
2021-09-04 22:19:57 -03:00

788 B

shasum

Calculate or check cryptographic SHA checksums.

  • Calculate the SHA1 checksum for a file:

shasum {{path/to/file}}

  • Calculate the SHA256 checksum for a file:

shasum --algorithm 256 {{path/to/file}}

  • Calculate the SHA512 checksum for multiple files:

shasum --algorithm 512 {{path/to/file1}} {{path/to/file2}}

  • Calculate and save the list of SHA256 checksums to a file:

shasum --algorithm 256 {{path/to/file1}} {{path/to/file2}} > {{path/to/file.sha256}}

  • Check a file with a list of sums against the directory's files:

shasum --check {{path/to/file}}

  • Check a list of sums and only show a message for files for which verification fails:

shasum --check --quiet {{path/to/file}}

  • Calculate the SHA1 checksum from stdin:

{{some_command}} | shasum