From d904a0b788e403376ca6959089340457c4bbda0a Mon Sep 17 00:00:00 2001 From: Hayden Schiff Date: Fri, 5 Feb 2016 11:04:37 -0500 Subject: [PATCH] sum: add page --- pages/common/sum.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/common/sum.md diff --git a/pages/common/sum.md b/pages/common/sum.md new file mode 100644 index 000000000..405d0ba17 --- /dev/null +++ b/pages/common/sum.md @@ -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}}`