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