checksum a file from a url
$ wget -qO- https://github.com/yulrizka/osx-push-to-talk/archive/v0.1.5.tar.gz | sha256sum
q : quiet, disable output log
O : output to a file
-
: stdout
flag is the same as -q -O /dev/stdout
Last updated
Was this helpful?
$ wget -qO- https://github.com/yulrizka/osx-push-to-talk/archive/v0.1.5.tar.gz | sha256sum
q : quiet, disable output log
O : output to a file
-
: stdout
flag is the same as -q -O /dev/stdout
Last updated
Was this helpful?