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: #### Generate hashsum list:
<pre> <pre>
$ ./sha3sum -t "*.*" > hash.txt $ ./sha3sum [-r] -t "*.*" > hash.txt
</pre> </pre>
#### Generate recursive hashsum list: #### Generate recursive hashsum list:
<pre> <pre>
$ find . -type f -name "*.*" -exec ./sha3sum -t '{}' \; > hash.txt $ find . -type f -name "*.*" -exec ./sha3sum [-r] -t '{}' \; > hash.txt
</pre> </pre>
##### Always works in binary mode. ##### Always works in binary mode.