Skip to content

Commit fd175b9

Browse files
committed
deploy: f0e8d44
1 parent 2a86260 commit fd175b9

File tree

11 files changed

+130
-130
lines changed

11 files changed

+130
-130
lines changed

user/print.html

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -956,22 +956,22 @@ <h2 id="options-1"><a class="header" href="#options-1">Options</a></h2>
956956
</dd>
957957
</dl>
958958
<h2 id="examples-1"><a class="header" href="#examples-1">Examples</a></h2>
959-
<p>Calculate the BLAKE2 checksum for a file:</p>
960-
<pre><code class="language-shell">b2sum {{path/to/file}}
959+
<p>Calculate the BLAKE2 checksum for one or more files:</p>
960+
<pre><code class="language-shell">b2sum {{path/to/file1 path/to/file2 ...}}
961961
</code></pre>
962-
<p>Calculate BLAKE2 checksums for multiple files:</p>
963-
<pre><code class="language-shell">b2sum {{path/to/file1}} {{path/to/file2}}
962+
<p>Calculate and save the list of BLAKE2 checksums to a file:</p>
963+
<pre><code class="language-shell">b2sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.b2}}
964964
</code></pre>
965-
<p>Calculate the BLAKE2 checksum from <code>stdin</code>:</p>
966-
<pre><code class="language-shell">{{some_command}} | b2sum
965+
<p>Calculate a BLAKE2 checksum from <code>stdin</code>:</p>
966+
<pre><code class="language-shell">{{command}} | b2sum
967967
</code></pre>
968968
<p>Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:</p>
969969
<pre><code class="language-shell">b2sum --check {{path/to/file.b2}}
970970
</code></pre>
971971
<p>Only show a message for missing files or when verification fails:</p>
972972
<pre><code class="language-shell">b2sum --check --quiet {{path/to/file.b2}}
973973
</code></pre>
974-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
974+
<p>Only show a message when verification fails, ignoring missing files:</p>
975975
<pre><code class="language-shell">b2sum --ignore-missing --check --quiet {{path/to/file.b2}}
976976
</code></pre>
977977
<blockquote>
@@ -1034,21 +1034,21 @@ <h2 id="options-2"><a class="header" href="#options-2">Options</a></h2>
10341034
</dd>
10351035
</dl>
10361036
<h2 id="examples-2"><a class="header" href="#examples-2">Examples</a></h2>
1037-
<p>Calculate the BLAKE3 checksum for a file:</p>
1038-
<pre><code class="language-shell">b3sum {{path/to/file}}
1037+
<p>Calculate the BLAKE3 checksum for one or more files:</p>
1038+
<pre><code class="language-shell">b3sum {{path/to/file1 path/to/file2 ...}}
10391039
</code></pre>
1040-
<p>Calculate BLAKE3 checksums for multiple files:</p>
1041-
<pre><code class="language-shell">b3sum {{path/to/file1}} {{path/to/file2}}
1040+
<p>Calculate and save the list of BLAKE3 checksums to a file:</p>
1041+
<pre><code class="language-shell">b3sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.b3}}
10421042
</code></pre>
1043-
<p>Calculate the BLAKE3 checksum from <code>stdin</code>:</p>
1044-
<pre><code class="language-shell">{{some_command}} | b3sum
1043+
<p>Calculate a BLAKE3 checksum from <code>stdin</code>:</p>
1044+
<pre><code class="language-shell">{{command}} | b3sum
10451045
</code></pre>
1046-
<p>Create a file of BLAKE3 checksums:</p>
1047-
<pre><code class="language-shell">b3sum {{path/to/file}} &gt; {{path/to/file.b3}}
1048-
</code></pre>
1049-
<p>Read and verify a file of BLAKE3 checksums:</p>
1046+
<p>Read a file of BLAKE3 sums and filenames and verify all files have matching checksums:</p>
10501047
<pre><code class="language-shell">b3sum --check {{path/to/file.b3}}
10511048
</code></pre>
1049+
<p>Only show a message for missing files or when verification fails:</p>
1050+
<pre><code class="language-shell">b3sum --check --quiet {{path/to/file.b3}}
1051+
</code></pre>
10521052
<blockquote>
10531053
<p>The examples are provided by the <a href="https://tldr.sh">tldr-pages project</a> under the <a href="https://github.com/tldr-pages/tldr/blob/main/LICENSE.md">CC BY 4.0 License</a>.</p>
10541054
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>
@@ -4768,22 +4768,22 @@ <h2 id="options-46"><a class="header" href="#options-46">Options</a></h2>
47684768
</dd>
47694769
</dl>
47704770
<h2 id="examples-45"><a class="header" href="#examples-45">Examples</a></h2>
4771-
<p>Calculate the MD5 checksum for a file:</p>
4772-
<pre><code class="language-shell">md5sum {{path/to/file}}
4771+
<p>Calculate the MD5 checksum for one or more files:</p>
4772+
<pre><code class="language-shell">md5sum {{path/to/file1 path/to/file2 ...}}
47734773
</code></pre>
4774-
<p>Calculate MD5 checksums for multiple files:</p>
4775-
<pre><code class="language-shell">md5sum {{path/to/file1}} {{path/to/file2}}
4774+
<p>Calculate and save the list of MD5 checksums to a file:</p>
4775+
<pre><code class="language-shell">md5sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.md5}}
47764776
</code></pre>
47774777
<p>Calculate an MD5 checksum from <code>stdin</code>:</p>
4778-
<pre><code class="language-shell">{{some_command}}&quot; | md5sum
4778+
<pre><code class="language-shell">{{command}} | md5sum
47794779
</code></pre>
4780-
<p>Read a file of MD5SUMs and verify all files have matching checksums:</p>
4780+
<p>Read a file of MD5 sums and filenames and verify all files have matching checksums:</p>
47814781
<pre><code class="language-shell">md5sum --check {{path/to/file.md5}}
47824782
</code></pre>
47834783
<p>Only show a message for missing files or when verification fails:</p>
47844784
<pre><code class="language-shell">md5sum --check --quiet {{path/to/file.md5}}
47854785
</code></pre>
4786-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
4786+
<p>Only show a message when verification fails, ignoring missing files:</p>
47874787
<pre><code class="language-shell">md5sum --ignore-missing --check --quiet {{path/to/file.md5}}
47884788
</code></pre>
47894789
<blockquote>
@@ -6887,22 +6887,22 @@ <h2 id="options-74"><a class="header" href="#options-74">Options</a></h2>
68876887
</dd>
68886888
</dl>
68896889
<h2 id="examples-72"><a class="header" href="#examples-72">Examples</a></h2>
6890-
<p>Calculate the SHA1 checksum for a file:</p>
6891-
<pre><code class="language-shell">sha1sum {{path/to/file}}
6892-
</code></pre>
6893-
<p>Calculate SHA1 checksums for multiple files:</p>
6894-
<pre><code class="language-shell">sha1sum {{path/to/file1}} {{path/to/file2}}
6890+
<p>Calculate the SHA1 checksum for one or more files:</p>
6891+
<pre><code class="language-shell">sha1sum {{path/to/file1 path/to/file2 ...}}
68956892
</code></pre>
68966893
<p>Calculate and save the list of SHA1 checksums to a file:</p>
6897-
<pre><code class="language-shell">sha1sum {{path/to/file1}} {{path/to/file2}} &gt; {{path/to/file.sha1}}
6894+
<pre><code class="language-shell">sha1sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.sha1}}
68986895
</code></pre>
6899-
<p>Read a file of SHA1 sums and verify all files have matching checksums:</p>
6896+
<p>Calculate a SHA1 checksum from <code>stdin</code>:</p>
6897+
<pre><code class="language-shell">{{command}} | sha1sum
6898+
</code></pre>
6899+
<p>Read a file of SHA1 sums and filenames and verify all files have matching checksums:</p>
69006900
<pre><code class="language-shell">sha1sum --check {{path/to/file.sha1}}
69016901
</code></pre>
69026902
<p>Only show a message for missing files or when verification fails:</p>
69036903
<pre><code class="language-shell">sha1sum --check --quiet {{path/to/file.sha1}}
69046904
</code></pre>
6905-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
6905+
<p>Only show a message when verification fails, ignoring missing files:</p>
69066906
<pre><code class="language-shell">sha1sum --ignore-missing --check --quiet {{path/to/file.sha1}}
69076907
</code></pre>
69086908
<blockquote>
@@ -6961,22 +6961,22 @@ <h2 id="options-75"><a class="header" href="#options-75">Options</a></h2>
69616961
</dd>
69626962
</dl>
69636963
<h2 id="examples-73"><a class="header" href="#examples-73">Examples</a></h2>
6964-
<p>Calculate the SHA224 checksum for a file:</p>
6965-
<pre><code class="language-shell">sha224sum {{path/to/file}}
6966-
</code></pre>
6967-
<p>Calculate SHA224 checksums for multiple files:</p>
6968-
<pre><code class="language-shell">sha224sum {{path/to/file1}} {{path/to/file2}}
6964+
<p>Calculate the SHA224 checksum for one or more files:</p>
6965+
<pre><code class="language-shell">sha224sum {{path/to/file1 path/to/file2 ...}}
69696966
</code></pre>
69706967
<p>Calculate and save the list of SHA224 checksums to a file:</p>
6971-
<pre><code class="language-shell">sha224sum {{path/to/file1}} {{path/to/file2}} &gt; {{path/to/file.sha224}}
6968+
<pre><code class="language-shell">sha224sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.sha224}}
6969+
</code></pre>
6970+
<p>Calculate a SHA224 checksum from <code>stdin</code>:</p>
6971+
<pre><code class="language-shell">{{command}} | sha224sum
69726972
</code></pre>
6973-
<p>Read a file of SHA224 sums and verify all files have matching checksums:</p>
6973+
<p>Read a file of SHA224 sums and filenames and verify all files have matching checksums:</p>
69746974
<pre><code class="language-shell">sha224sum --check {{path/to/file.sha224}}
69756975
</code></pre>
69766976
<p>Only show a message for missing files or when verification fails:</p>
69776977
<pre><code class="language-shell">sha224sum --check --quiet {{path/to/file.sha224}}
69786978
</code></pre>
6979-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
6979+
<p>Only show a message when verification fails, ignoring missing files:</p>
69806980
<pre><code class="language-shell">sha224sum --ignore-missing --check --quiet {{path/to/file.sha224}}
69816981
</code></pre>
69826982
<blockquote>
@@ -7035,22 +7035,22 @@ <h2 id="options-76"><a class="header" href="#options-76">Options</a></h2>
70357035
</dd>
70367036
</dl>
70377037
<h2 id="examples-74"><a class="header" href="#examples-74">Examples</a></h2>
7038-
<p>Calculate the SHA256 checksum for a file:</p>
7039-
<pre><code class="language-shell">sha256sum {{path/to/file}}
7040-
</code></pre>
7041-
<p>Calculate SHA256 checksums for multiple files:</p>
7042-
<pre><code class="language-shell">sha256sum {{path/to/file1}} {{path/to/file2}}
7038+
<p>Calculate the SHA256 checksum for one or more files:</p>
7039+
<pre><code class="language-shell">sha256sum {{path/to/file1 path/to/file2 ...}}
70437040
</code></pre>
70447041
<p>Calculate and save the list of SHA256 checksums to a file:</p>
7045-
<pre><code class="language-shell">sha256sum {{path/to/file1}} {{path/to/file2}} &gt; {{path/to/file.sha256}}
7042+
<pre><code class="language-shell">sha256sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.sha256}}
7043+
</code></pre>
7044+
<p>Calculate a SHA256 checksum from <code>stdin</code>:</p>
7045+
<pre><code class="language-shell">{{command}} | sha256sum
70467046
</code></pre>
7047-
<p>Read a file of SHA256 sums and verify all files have matching checksums:</p>
7047+
<p>Read a file of SHA256 sums and filenames and verify all files have matching checksums:</p>
70487048
<pre><code class="language-shell">sha256sum --check {{path/to/file.sha256}}
70497049
</code></pre>
70507050
<p>Only show a message for missing files or when verification fails:</p>
70517051
<pre><code class="language-shell">sha256sum --check --quiet {{path/to/file.sha256}}
70527052
</code></pre>
7053-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
7053+
<p>Only show a message when verification fails, ignoring missing files:</p>
70547054
<pre><code class="language-shell">sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}
70557055
</code></pre>
70567056
<blockquote>
@@ -7313,22 +7313,22 @@ <h2 id="options-81"><a class="header" href="#options-81">Options</a></h2>
73137313
</dd>
73147314
</dl>
73157315
<h2 id="examples-75"><a class="header" href="#examples-75">Examples</a></h2>
7316-
<p>Calculate the SHA384 checksum for a file:</p>
7317-
<pre><code class="language-shell">sha384sum {{path/to/file}}
7318-
</code></pre>
7319-
<p>Calculate SHA384 checksums for multiple files:</p>
7320-
<pre><code class="language-shell">sha384sum {{path/to/file1}} {{path/to/file2}}
7316+
<p>Calculate the SHA384 checksum for one or more files:</p>
7317+
<pre><code class="language-shell">sha384sum {{path/to/file1 path/to/file2 ...}}
73217318
</code></pre>
73227319
<p>Calculate and save the list of SHA384 checksums to a file:</p>
7323-
<pre><code class="language-shell">sha384sum {{path/to/file1}} {{path/to/file2}} &gt; {{path/to/file.sha384}}
7320+
<pre><code class="language-shell">sha384sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.sha384}}
73247321
</code></pre>
7325-
<p>Read a file of SHA384 sums and verify all files have matching checksums:</p>
7322+
<p>Calculate a SHA384 checksum from <code>stdin</code>:</p>
7323+
<pre><code class="language-shell">{{command}} | sha384sum
7324+
</code></pre>
7325+
<p>Read a file of SHA384 sums and filenames and verify all files have matching checksums:</p>
73267326
<pre><code class="language-shell">sha384sum --check {{path/to/file.sha384}}
73277327
</code></pre>
73287328
<p>Only show a message for missing files or when verification fails:</p>
73297329
<pre><code class="language-shell">sha384sum --check --quiet {{path/to/file.sha384}}
73307330
</code></pre>
7331-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
7331+
<p>Only show a message when verification fails, ignoring missing files:</p>
73327332
<pre><code class="language-shell">sha384sum --ignore-missing --check --quiet {{path/to/file.sha384}}
73337333
</code></pre>
73347334
<blockquote>
@@ -7442,22 +7442,22 @@ <h2 id="options-83"><a class="header" href="#options-83">Options</a></h2>
74427442
</dd>
74437443
</dl>
74447444
<h2 id="examples-76"><a class="header" href="#examples-76">Examples</a></h2>
7445-
<p>Calculate the SHA512 checksum for a file:</p>
7446-
<pre><code class="language-shell">sha512sum {{path/to/file}}
7447-
</code></pre>
7448-
<p>Calculate SHA512 checksums for multiple files:</p>
7449-
<pre><code class="language-shell">sha512sum {{path/to/file1}} {{path/to/file2}}
7445+
<p>Calculate the SHA512 checksum for one or more files:</p>
7446+
<pre><code class="language-shell">sha512sum {{path/to/file1 path/to/file2 ...}}
74507447
</code></pre>
74517448
<p>Calculate and save the list of SHA512 checksums to a file:</p>
7452-
<pre><code class="language-shell">sha512sum {{path/to/file1}} {{path/to/file2}} &gt; {{path/to/file.sha512}}
7449+
<pre><code class="language-shell">sha512sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.sha512}}
7450+
</code></pre>
7451+
<p>Calculate a SHA512 checksum from <code>stdin</code>:</p>
7452+
<pre><code class="language-shell">{{command}} | sha512sum
74537453
</code></pre>
7454-
<p>Read a file of SHA512 sums and verify all files have matching checksums:</p>
7454+
<p>Read a file of SHA512 sums and filenames and verify all files have matching checksums:</p>
74557455
<pre><code class="language-shell">sha512sum --check {{path/to/file.sha512}}
74567456
</code></pre>
74577457
<p>Only show a message for missing files or when verification fails:</p>
74587458
<pre><code class="language-shell">sha512sum --check --quiet {{path/to/file.sha512}}
74597459
</code></pre>
7460-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
7460+
<p>Only show a message when verification fails, ignoring missing files:</p>
74617461
<pre><code class="language-shell">sha512sum --ignore-missing --check --quiet {{path/to/file.sha512}}
74627462
</code></pre>
74637463
<blockquote>

user/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

user/searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

user/utils/b2sum.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -221,22 +221,22 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
221221
</dd>
222222
</dl>
223223
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
224-
<p>Calculate the BLAKE2 checksum for a file:</p>
225-
<pre><code class="language-shell">b2sum {{path/to/file}}
224+
<p>Calculate the BLAKE2 checksum for one or more files:</p>
225+
<pre><code class="language-shell">b2sum {{path/to/file1 path/to/file2 ...}}
226226
</code></pre>
227-
<p>Calculate BLAKE2 checksums for multiple files:</p>
228-
<pre><code class="language-shell">b2sum {{path/to/file1}} {{path/to/file2}}
227+
<p>Calculate and save the list of BLAKE2 checksums to a file:</p>
228+
<pre><code class="language-shell">b2sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.b2}}
229229
</code></pre>
230-
<p>Calculate the BLAKE2 checksum from <code>stdin</code>:</p>
231-
<pre><code class="language-shell">{{some_command}} | b2sum
230+
<p>Calculate a BLAKE2 checksum from <code>stdin</code>:</p>
231+
<pre><code class="language-shell">{{command}} | b2sum
232232
</code></pre>
233233
<p>Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:</p>
234234
<pre><code class="language-shell">b2sum --check {{path/to/file.b2}}
235235
</code></pre>
236236
<p>Only show a message for missing files or when verification fails:</p>
237237
<pre><code class="language-shell">b2sum --check --quiet {{path/to/file.b2}}
238238
</code></pre>
239-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
239+
<p>Only show a message when verification fails, ignoring missing files:</p>
240240
<pre><code class="language-shell">b2sum --ignore-missing --check --quiet {{path/to/file.b2}}
241241
</code></pre>
242242
<blockquote>

user/utils/b3sum.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -225,21 +225,21 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
225225
</dd>
226226
</dl>
227227
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
228-
<p>Calculate the BLAKE3 checksum for a file:</p>
229-
<pre><code class="language-shell">b3sum {{path/to/file}}
228+
<p>Calculate the BLAKE3 checksum for one or more files:</p>
229+
<pre><code class="language-shell">b3sum {{path/to/file1 path/to/file2 ...}}
230230
</code></pre>
231-
<p>Calculate BLAKE3 checksums for multiple files:</p>
232-
<pre><code class="language-shell">b3sum {{path/to/file1}} {{path/to/file2}}
231+
<p>Calculate and save the list of BLAKE3 checksums to a file:</p>
232+
<pre><code class="language-shell">b3sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.b3}}
233233
</code></pre>
234-
<p>Calculate the BLAKE3 checksum from <code>stdin</code>:</p>
235-
<pre><code class="language-shell">{{some_command}} | b3sum
234+
<p>Calculate a BLAKE3 checksum from <code>stdin</code>:</p>
235+
<pre><code class="language-shell">{{command}} | b3sum
236236
</code></pre>
237-
<p>Create a file of BLAKE3 checksums:</p>
238-
<pre><code class="language-shell">b3sum {{path/to/file}} &gt; {{path/to/file.b3}}
239-
</code></pre>
240-
<p>Read and verify a file of BLAKE3 checksums:</p>
237+
<p>Read a file of BLAKE3 sums and filenames and verify all files have matching checksums:</p>
241238
<pre><code class="language-shell">b3sum --check {{path/to/file.b3}}
242239
</code></pre>
240+
<p>Only show a message for missing files or when verification fails:</p>
241+
<pre><code class="language-shell">b3sum --check --quiet {{path/to/file.b3}}
242+
</code></pre>
243243
<blockquote>
244244
<p>The examples are provided by the <a href="https://tldr.sh">tldr-pages project</a> under the <a href="https://github.com/tldr-pages/tldr/blob/main/LICENSE.md">CC BY 4.0 License</a>.</p>
245245
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

user/utils/md5sum.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -221,22 +221,22 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
221221
</dd>
222222
</dl>
223223
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
224-
<p>Calculate the MD5 checksum for a file:</p>
225-
<pre><code class="language-shell">md5sum {{path/to/file}}
224+
<p>Calculate the MD5 checksum for one or more files:</p>
225+
<pre><code class="language-shell">md5sum {{path/to/file1 path/to/file2 ...}}
226226
</code></pre>
227-
<p>Calculate MD5 checksums for multiple files:</p>
228-
<pre><code class="language-shell">md5sum {{path/to/file1}} {{path/to/file2}}
227+
<p>Calculate and save the list of MD5 checksums to a file:</p>
228+
<pre><code class="language-shell">md5sum {{path/to/file1 path/to/file2 ...}} &gt; {{path/to/file.md5}}
229229
</code></pre>
230230
<p>Calculate an MD5 checksum from <code>stdin</code>:</p>
231-
<pre><code class="language-shell">{{some_command}}&quot; | md5sum
231+
<pre><code class="language-shell">{{command}} | md5sum
232232
</code></pre>
233-
<p>Read a file of MD5SUMs and verify all files have matching checksums:</p>
233+
<p>Read a file of MD5 sums and filenames and verify all files have matching checksums:</p>
234234
<pre><code class="language-shell">md5sum --check {{path/to/file.md5}}
235235
</code></pre>
236236
<p>Only show a message for missing files or when verification fails:</p>
237237
<pre><code class="language-shell">md5sum --check --quiet {{path/to/file.md5}}
238238
</code></pre>
239-
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
239+
<p>Only show a message when verification fails, ignoring missing files:</p>
240240
<pre><code class="language-shell">md5sum --ignore-missing --check --quiet {{path/to/file.md5}}
241241
</code></pre>
242242
<blockquote>

0 commit comments

Comments
 (0)