mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 08:35:32 +02:00
shasum: long form arguments, typo fixed
This commit is contained in:
parent
377c0e142e
commit
9e1c51e9c9
2 changed files with 8 additions and 8 deletions
|
@ -8,15 +8,15 @@
|
|||
|
||||
- Calculate the SHA256 checksum for a file:
|
||||
|
||||
`shasum -a 256 {{filename}}`
|
||||
`shasum --algorithm 256 {{filename}}`
|
||||
|
||||
- Calculate the SHA512 checksum for multiple files:
|
||||
|
||||
`shasum -a 512 {{filename1}} {{filename2}}`
|
||||
`shasum --algorithm 512 {{filename1}} {{filename2}}`
|
||||
|
||||
- Check a file with a list of sums against the directorys files:
|
||||
- Check a file with a list of sums against the directory's files:
|
||||
|
||||
`shasum -c {{list_file}}`
|
||||
`shasum --check {{list_file}}`
|
||||
|
||||
- Calculate the SHA1 checksum from stdin:
|
||||
|
||||
|
|
|
@ -8,15 +8,15 @@
|
|||
|
||||
- Calculate the SHA256 checksum for a file:
|
||||
|
||||
`shasum -a 256 {{filename}}`
|
||||
`shasum --algorithm 256 {{filename}}`
|
||||
|
||||
- Calculate the SHA512 checksum for multiple files:
|
||||
|
||||
`shasum -a 512 {{filename1}} {{filename2}}`
|
||||
`shasum --algorithm 512 {{filename1}} {{filename2}}`
|
||||
|
||||
- Check a file with a list of sums against the directorys files:
|
||||
- Check a file with a list of sums against the directory's files:
|
||||
|
||||
`shasum -c {{list_file}}`
|
||||
`shasum --check {{list_file}}`
|
||||
|
||||
- Calculate the SHA1 checksum from stdin:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue