1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 16:35:28 +02:00

sha*: add --quiet option example

This commit is contained in:
Andrea 2020-12-18 13:47:34 +01:00 committed by Starbeamrainbowlabs
parent 1b4c23259b
commit 3bde35a542
5 changed files with 20 additions and 0 deletions

View file

@ -13,3 +13,7 @@
- Read a file of SHA1 sums and verify all files have matching checksums:
`sha1sum -c {{filename.sha1}}`
- Verify all files have matching chesksums but don't print OK for succefully verified file:
`sha1sum -c --quiet {{filename.sha1}}`

View file

@ -13,3 +13,7 @@
- Read a file of SHA224 sums and verify all files have matching checksums:
`sha224sum -c {{filename.sha224}}`
- Verify all files have matching chesksums but don't print OK for succefully verified file:
`sha224sum -c --quiet {{filename.sha224}}`

View file

@ -13,3 +13,7 @@
- Read a file of SHA384 sums and verify all files have matching checksums:
`sha384sum -c {{filename.sha384}}`
- Verify all files have matching chesksums but don't print OK for succefully verified file:
`sha384sum -c --quiet {{filename.sha384}}`

View file

@ -13,3 +13,7 @@
- Read a file of SHA512 sums and verify all files have matching checksums:
`sha512sum -c {{filename.sha512}}`
- Verify all files have matching chesksums but don't print OK for succefully verified file:
`sha512sum -c --quiet {{filename.sha512}}`

View file

@ -18,6 +18,10 @@
`shasum --check {{list_file}}`
- Check a list of sums but don't print OK for each successfully verified file:
`shasum -c -q {{list_file}}`
- Calculate the SHA1 checksum from `stdin`:
`{{somecommand}} | shasum`