1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00
tldr/pages/common/b2sum.md
Miles Glapa-Grossklag 1939709fa8 b2sum: fix file names
2021-09-04 22:19:57 -03:00

482 B

b2sum

Calculate BLAKE2 cryptographic checksums. More information: https://www.gnu.org/software/coreutils/b2sum.

  • Calculate the BLAKE2 checksum for a file:

b2sum {{path/to/file}}

  • Calculate BLAKE2 checksums for multiple files:

b2sum {{path/to/file1}} {{path/to/file2}}

  • Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:

b2sum -c {{path/to/file.b2}}

  • Calculate the BLAKE2 checksum from stdin:

{{some_command}} | b2sum