From 1939709fa80708d8ee72d1be4e3bcd0457f27c78 Mon Sep 17 00:00:00 2001 From: Miles Glapa-Grossklag Date: Fri, 3 Sep 2021 12:26:41 -0700 Subject: [PATCH] b2sum: fix file names --- pages/common/b2sum.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/b2sum.md b/pages/common/b2sum.md index 0ac9531791..8b50ace942 100644 --- a/pages/common/b2sum.md +++ b/pages/common/b2sum.md @@ -5,16 +5,16 @@ - Calculate the BLAKE2 checksum for a file: -`b2sum {{filename1}}` +`b2sum {{path/to/file}}` - Calculate BLAKE2 checksums for multiple files: -`b2sum {{filename1}} {{filename2}}` +`b2sum {{path/to/file1}} {{path/to/file2}}` - Read a file of BLAKE2 sums and filenames and verify all files have matching checksums: -`b2sum -c {{filename.b2}}` +`b2sum -c {{path/to/file.b2}}` - Calculate the BLAKE2 checksum from stdin: -`{{somecommand}} | b2sum` +`{{some_command}} | b2sum`