diff --git a/README.md b/README.md index 36f2ea2..aeee39b 100644 --- a/README.md +++ b/README.md @@ -20,17 +20,17 @@ sha3sum [-v] [-b N] [-c ] -t <file.ext> #### Generate hashsum list:
-./gostsum -t "*.*" > hash.txt
+./sha3sum -t "*.*" > hash.txt
 
#### Generate recursive hashsum list:
-$ find . -type f -name "*.*" -exec ./gostsum -t '{}' \; > hash.txt 
+$ find . -type f -name "*.*" -exec ./sha3sum -t '{}' \; > hash.txt 
 
##### Always works in binary mode. #### Check hashsum file:
-./gostsum [-v] -c hash.txt
+./sha3sum [-v] -c hash.txt
 
##### Exit code is always 0 in vebose mode.