mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 17:02:09 +02:00
19 lines
399 B
Markdown
19 lines
399 B
Markdown
# b2sum
|
|
|
|
> Calculate BLAKE2 cryptographic checksums.
|
|
|
|
- Calculate the BLAKE2 checksum for a file:
|
|
|
|
`b2sum {{filename1}}`
|
|
|
|
- Calculate BLAKE2 checksums for multiple files:
|
|
|
|
`b2sum {{filename1}} {{filename2}}`
|
|
|
|
- Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:
|
|
|
|
`b2sum -c {{filename.b2}}`
|
|
|
|
- Calculate the BLAKE2 checksum from stdin:
|
|
|
|
`{{somecommand}} | shasum`
|