calculate checksums
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Stephen McQuay 250b010c7e
make output SHASUM(1)-compatible
3 years ago
check.go Added verbose mode 6 years ago
hash.go Added verbose mode 6 years ago
license updated license file 7 years ago
main.go make output SHASUM(1)-compatible 3 years ago
readme.md update readme 7 years ago

readme.md

cs

concurrently calculate/verify checksums (cs)

It's a simpler version of shasum + md5sum, but concurrently and only with support for md5, sha1, sha256, and sha512.

usage

# create checksums
cs -a 256 < foo.txt
cs foo.txt
cs -a sha1 foo.txt foo.txt foo.txt > checksums.sha1

# verify
cat checksums.sha1 | cs -c 
cs -c checksums.sha1

# both
cs $(find ~/src/mcquay.me | grep  '\.go$') | cs -c