From 465e6a3cca2a6831d04d4f78250b825cea1b7bce Mon Sep 17 00:00:00 2001 From: Pedro Albanese <68971450+pedroalbanese@users.noreply.github.com> Date: Mon, 5 Apr 2021 19:38:15 -0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.