diff --git a/pages/common/sha1sum.md b/pages/common/sha1sum.md index fbc8aeaa65..19124a86cb 100644 --- a/pages/common/sha1sum.md +++ b/pages/common/sha1sum.md @@ -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}}` diff --git a/pages/common/sha224sum.md b/pages/common/sha224sum.md index e2058e21ce..f623a4226f 100644 --- a/pages/common/sha224sum.md +++ b/pages/common/sha224sum.md @@ -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}}` diff --git a/pages/common/sha384sum.md b/pages/common/sha384sum.md index 3dcbaba2ea..78eeaaf841 100644 --- a/pages/common/sha384sum.md +++ b/pages/common/sha384sum.md @@ -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}}` diff --git a/pages/common/sha512sum.md b/pages/common/sha512sum.md index c3e8efc7fa..06597b3e81 100644 --- a/pages/common/sha512sum.md +++ b/pages/common/sha512sum.md @@ -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}}` diff --git a/pages/common/shasum.md b/pages/common/shasum.md index acc6feb863..d87861d36c 100644 --- a/pages/common/shasum.md +++ b/pages/common/shasum.md @@ -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`