From ce8badee3a2fd47ec56aea81a464e9cd9b151ebc Mon Sep 17 00:00:00 2001 From: ivuorinen Date: Thu, 21 Nov 2024 00:18:23 +0000 Subject: [PATCH] Update cheatsheets --- tldr/sha256sum | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tldr/sha256sum b/tldr/sha256sum index 780059e6..06d519f4 100644 --- a/tldr/sha256sum +++ b/tldr/sha256sum @@ -20,7 +20,7 @@ source: https://github.com/tldr-pages/tldr.git `{{command}} | sha256sum` -- Read a file of SHA256 sums and filenames and verify all files have matching checksums: +- Read a file of SHA256 checksums and filenames and verify all files have matching checksums: `sha256sum --check {{path/to/file.sha256}}` @@ -32,6 +32,6 @@ source: https://github.com/tldr-pages/tldr.git `sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}` -- Check known SHA256 sum of a file: +- Check known SHA256 checksum of a file: -`echo {{known-sha256-sum-of-the-file}} {{path/to/file}} | sha256sum --check` +`echo {{known_sha256_checksum_of_the_file}} {{path/to/file}} | sha256sum --check`