diff --git a/README.md b/README.md index aaacc8a..41a19c8 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,12 @@ sha3sum [-v] [-b N] [-c <hash.ext>] [-r] -t <file.ext> #### Generate hashsum list:
-$ ./sha3sum -t "*.*" > hash.txt
+$ ./sha3sum [-r] -t "*.*" > hash.txt
 
#### Generate recursive hashsum list:
-$ find . -type f -name "*.*" -exec ./sha3sum -t '{}' \; > hash.txt 
+$ find . -type f -name "*.*" -exec ./sha3sum [-r] -t '{}' \; > hash.txt 
 
##### Always works in binary mode.