mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 12:15:33 +02:00
b3sum: add page (#9838)
* b3sum: add page * Update pages/common/b3sum.md Accepting suggested changes Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages/common/b3sum.md Accepting suggested changes Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages/common/b3sum.md Accepting suggested changes Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
parent
c566cd03b4
commit
ba6f71b09b
1 changed files with 25 additions and 0 deletions
25
pages/common/b3sum.md
Normal file
25
pages/common/b3sum.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# b3sum
|
||||||
|
|
||||||
|
> Command line utility for calculating BLAKE3 hashes.
|
||||||
|
> It is similar to Coreutils tools like b2sum or md5sum.
|
||||||
|
> More information: <https://github.com/BLAKE3-team/BLAKE3/tree/master/b3sum>.
|
||||||
|
|
||||||
|
- Calculate the BLAKE3 checksum for a file:
|
||||||
|
|
||||||
|
`b3sum {{path/to/file}}`
|
||||||
|
|
||||||
|
- Calculate BLAKE3 checksums for multiple files:
|
||||||
|
|
||||||
|
`b3sum {{path/to/file1}} {{path/to/file2}}`
|
||||||
|
|
||||||
|
- Calculate the BLAKE3 checksum from `stdin`:
|
||||||
|
|
||||||
|
`{{some_command}} | b3sum`
|
||||||
|
|
||||||
|
- Create a file of BLAKE3 checksums:
|
||||||
|
|
||||||
|
`b3sum {{path/to/file}} > {{path/to/file.b3}}`
|
||||||
|
|
||||||
|
- Read and verify a file of BLAKE3 checksums:
|
||||||
|
|
||||||
|
`b3sum --check {{path/to/file.b3}}`
|
Loading…
Add table
Reference in a new issue