1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 03:17:58 +01:00

sum: add page

This commit is contained in:
Hayden Schiff 2016-02-05 11:04:37 -05:00
parent 08d9c7f342
commit d904a0b788

11
pages/common/sum.md Normal file
View file

@ -0,0 +1,11 @@
# sum
> Compute checksums and the number of blocks for a file
- Compute a checksum with BSD-compatible algorithm and 1024-byte blocks:
`sum {{file}}`
- Compute a checksum with System V-compatible algorithm and 512-byte blocks
`sum --sysv {{file}}`