update readme

This commit is contained in:
sm
2016-11-16 01:29:08 -08:00
parent c5cd77676e
commit 9e4d6b8f9e
+12 -4
View File
@@ -1,12 +1,20 @@
# cs # cs
calculate checksums concurrently calculate/verify checksums (cs)
It's a simpler version of shasum + md5sum, but only for md5, sha1, sha256, and It's a simpler version of shasum + md5sum, but concurrently and only with
sha512. support for md5, sha1, sha256, and sha512.
## usage ## usage
# create checksums
cs -a 256 < foo.txt cs -a 256 < foo.txt
cs foo.txt cs foo.txt
cs -a sha1 foo.txt foo.txt 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