Update README.md

Deprecate Verbose Mode
This commit is contained in:
Pedro F. Albanese
2022-06-04 13:52:42 -03:00
committed by GitHub
parent c882e6e59f
commit 9fde3718c2

View File

@@ -8,13 +8,12 @@
### sha3sum Parallel Implementation written in Go ### sha3sum Parallel Implementation written in Go
<PRE>Usage of sha3sum: <PRE>Usage of sha3sum:
sha3sum [-v] [-b N] [-c &lt;hash.ext&gt;] [-r] &lt;file.ext&gt; sha3sum [-c &lt;hash.ext&gt;] [-b N] [-r] &lt;file.ext&gt;
-b int -b int
Bits: 224, 256, 384 and 512. (default 256) Bits: 224, 256, 384 and 512. (default 256)
-c string -c string
Check hashsum file. Check hashsum file.
-r Process directories recursively. -r Process directories recursively.</PRE>
-v Verbose mode. (The exit code is always 0 in this mode)</PRE>
### Examples: ### Examples:
@@ -26,7 +25,7 @@ $ ./sha3sum [-r] "*.*" > hash.txt
#### Check hashsum file: #### Check hashsum file:
<pre> <pre>
$ ./sha3sum [-v] -c hash.txt $ ./sha3sum -c hash.txt
</pre> </pre>
##### Exit code is always 0 in verbose mode. ##### Exit code is always 0 in verbose mode.