A golang port of b3sum
Go to file
Greg e52426e80f Add LICENSE and README.md. Set default concurrency to the number of
CPUs, and read stdin if no input files are specified.
2020-04-02 16:49:09 -04:00
.gitignore Initial commit 2020-04-02 13:13:35 -04:00
LICENSE Add LICENSE and README.md. Set default concurrency to the number of 2020-04-02 16:49:09 -04:00
README.md Add LICENSE and README.md. Set default concurrency to the number of 2020-04-02 16:49:09 -04:00
go.mod Initial commit 2020-04-02 13:13:35 -04:00
go.sum Initial commit 2020-04-02 13:13:35 -04:00
main.go Add LICENSE and README.md. Set default concurrency to the number of 2020-04-02 16:49:09 -04:00

README.md

b3sum

A golang port of b3sum

This is a simple b3sum command using github.com/zeebo/blake3.

go get git.wow.st/gmp/b3sum
go install git.wow.st/gmp/b3sum

Usage:

  b3sum [flags] [file]...
  -h	Prints help information
  -l int
    	The number of output bytes, prior to hex encoding (default 32)
  -p int
    	The maximum concurrency (defaults to the number of CPUs)

If no input files are specified, b3sum reads stdin.