*sum: update pages to make them consistent (#10136)
* *sum: update pages to make them consistent * md5sum: fix typo, shasum: change 'the' to 'a' for consistency
This commit is contained in:
@@ -3,19 +3,19 @@
|
||||
> Calculate MD5 cryptographic checksums.
|
||||
> More information: <https://www.gnu.org/software/coreutils/md5sum>.
|
||||
|
||||
- Calculate the MD5 checksum for a file:
|
||||
- Calculate the MD5 checksum for one or more files:
|
||||
|
||||
`md5sum {{path/to/file}}`
|
||||
`md5sum {{path/to/file1 path/to/file2 ...}}`
|
||||
|
||||
- Calculate MD5 checksums for multiple files:
|
||||
- Calculate and save the list of MD5 checksums to a file:
|
||||
|
||||
`md5sum {{path/to/file1}} {{path/to/file2}}`
|
||||
`md5sum {{path/to/file1 path/to/file2 ...}} > {{path/to/file.md5}}`
|
||||
|
||||
- Calculate an MD5 checksum from `stdin`:
|
||||
|
||||
`{{some_command}}" | md5sum`
|
||||
`{{some_command}} | md5sum`
|
||||
|
||||
- Read a file of MD5SUMs and verify all files have matching checksums:
|
||||
- Read a file of MD5 sums and filenames and verify all files have matching checksums:
|
||||
|
||||
`md5sum --check {{path/to/file.md5}}`
|
||||
|
||||
@@ -23,6 +23,6 @@
|
||||
|
||||
`md5sum --check --quiet {{path/to/file.md5}}`
|
||||
|
||||
- Only show a message for files for which verification fails, ignoring missing files:
|
||||
- Only show a message when verification fails, ignoring missing files:
|
||||
|
||||
`md5sum --ignore-missing --check --quiet {{path/to/file.md5}}`
|
||||
|
Reference in New Issue
Block a user