diff options
author | Cem Keylan <cem@ckyln.com> | 2021-07-04 01:19:43 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-07-04 01:19:43 +0300 |
commit | f09cf91d76edc98dea15143006aff2fe7065e43c (patch) | |
tree | 30c18b9cdbee17a57a437b28e07241723ab75ec0 /core/b3sum/files | |
parent | 51955f0802ed5bfd0e12d6f43c6f472efd58d343 (diff) | |
download | repository-f09cf91d76edc98dea15143006aff2fe7065e43c.tar.gz |
b3sum: add manual page
Diffstat (limited to 'core/b3sum/files')
-rw-r--r-- | core/b3sum/files/b3sum.1 | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/core/b3sum/files/b3sum.1 b/core/b3sum/files/b3sum.1 new file mode 100644 index 00000000..b4332197 --- /dev/null +++ b/core/b3sum/files/b3sum.1 @@ -0,0 +1,38 @@ +.Dd Jul 03, 2021 +.Dt b3sum 1 +.Sh NAME +.Nm b3sum +.Nd compute or check BLAKE3 message digests +.Sh SYNOPSIS +.Nm +.Op Fl bct +.Op Fl l Ar length +.Op Ar file... +.Sh DESCRIPTION +.Nm +writes BLAKE3 checksums of each +.Ar file +to stdout. If no +.Ar file +is given +.Nm +reads from the standard input. +.Sh OPTIONS +.Bl -tag +.It Fl c +Read list of BLAKE3 checksums from each +.Ar file +and check them. If no +.Ar file +is given +.Nm +reads from stdin. +.It Fl b +read in binary mode. +.It Fl t +read in text mode (default) +.It Fl l Ar length +Output the first +.Ar length +characters of the generated checksum. +.El |