1
0
Fork 0
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:
alpreu 2017-10-05 11:20:54 +02:00
parent 377c0e142e
commit 9e1c51e9c9
2 changed files with 8 additions and 8 deletions

View file

@ -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:

View file

@ -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: