b3sum
Options
--binary
,-b
-
read in binary mode
--check
,-c
-
read hashsums from the FILEs and check them
--tag
-
create a BSD-style checksum
--text
,-t
-
read in text mode (default)
--quiet
,-q
-
don't print OK for each successfully verified file
--status
,-s
-
don't output anything, status code shows success
--strict
-
exit non-zero for improperly formatted checksum lines
--ignore-missing
-
don't fail or report status for missing files
--warn
,-w
-
warn about improperly formatted checksum lines
--zero
,-z
-
end each output line with NUL, not newline
--no-names
-
Omits filenames in the output (option not present in GNU/Coreutils)
Examples
Calculate the BLAKE3 checksum for one or more files:
b3sum {{path/to/file1 path/to/file2 ...}}
Calculate and save the list of BLAKE3 checksums to a file:
b3sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.b3}}
Calculate a BLAKE3 checksum from stdin
:
{{command}} | b3sum
Read a file of BLAKE3 sums and filenames and verify all files have matching checksums:
b3sum --check {{path/to/file.b3}}
Only show a message for missing files or when verification fails:
b3sum --check --quiet {{path/to/file.b3}}
The examples are provided by the tldr-pages project under the CC BY 4.0 License.
Please note that, as uutils is a work in progress, some examples might fail.