Update README.md

This commit is contained in:
Pedro Albanese
2021-04-06 01:42:54 -03:00
committed by GitHub
parent b9030dfe7f
commit 38a04da44e

View File

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