From 38a04da44e1be56dbe0fceba9824298e64522f94 Mon Sep 17 00:00:00 2001 From: Pedro Albanese <68971450+pedroalbanese@users.noreply.github.com> Date: Tue, 6 Apr 2021 01:42:54 -0300 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.