Skip to content

Commit c254ec0

Browse files
committed
deploy: 055173b
1 parent 58d9e9f commit c254ec0

10 files changed

+78
-24
lines changed

user/print.html

Lines changed: 38 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -527,12 +527,18 @@ <h2 id="examples-1"><a class="header" href="#examples-1">Examples</a></h2>
527527
<p>Calculate BLAKE2 checksums for multiple files:</p>
528528
<pre><code class="language-shell">b2sum {{path/to/file1}} {{path/to/file2}}
529529
</code></pre>
530-
<p>Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:</p>
531-
<pre><code class="language-shell">b2sum -c {{path/to/file.b2}}
532-
</code></pre>
533530
<p>Calculate the BLAKE2 checksum from stdin:</p>
534531
<pre><code class="language-shell">{{some_command}} | b2sum
535532
</code></pre>
533+
<p>Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:</p>
534+
<pre><code class="language-shell">b2sum --check {{path/to/file.b2}}
535+
</code></pre>
536+
<p>Only show a message for missing files or when verification fails:</p>
537+
<pre><code class="language-shell">b2sum --check --quiet {{path/to/file.b2}}
538+
</code></pre>
539+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
540+
<pre><code class="language-shell">b2sum --ignore-missing --check --quiet {{path/to/file.b2}}
541+
</code></pre>
536542
<blockquote>
537543
<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>
538544
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>
@@ -3654,12 +3660,18 @@ <h2 id="examples-42"><a class="header" href="#examples-42">Examples</a></h2>
36543660
<p>Calculate MD5 checksums for multiple files:</p>
36553661
<pre><code class="language-shell">md5sum {{path/to/file1}} {{path/to/filen2}}
36563662
</code></pre>
3657-
<p>Read a file of MD5SUMs and verify all files have matching checksums:</p>
3658-
<pre><code class="language-shell">md5sum -c {{path/to/file.md5}}
3659-
</code></pre>
36603663
<p>Calculate a MD5 checksum from the standard input:</p>
36613664
<pre><code class="language-shell">echo &quot;{{text}}&quot; | md5sum
36623665
</code></pre>
3666+
<p>Read a file of MD5SUMs and verify all files have matching checksums:</p>
3667+
<pre><code class="language-shell">md5sum --check {{path/to/file.md5}}
3668+
</code></pre>
3669+
<p>Only show a message for missing files or when verification fails:</p>
3670+
<pre><code class="language-shell">md5sum --check --quiet {{path/to/file.md5}}
3671+
</code></pre>
3672+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
3673+
<pre><code class="language-shell">md5sum --ignore-missing --check --quiet {{path/to/file.md5}}
3674+
</code></pre>
36633675
<blockquote>
36643676
<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>
36653677
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>
@@ -5380,9 +5392,12 @@ <h2 id="examples-69"><a class="header" href="#examples-69">Examples</a></h2>
53805392
<p>Read a file of SHA1 sums and verify all files have matching checksums:</p>
53815393
<pre><code class="language-shell">sha1sum --check {{path/to/file.sha1}}
53825394
</code></pre>
5383-
<p>Only show a message for files for which verification fails:</p>
5395+
<p>Only show a message for missing files or when verification fails:</p>
53845396
<pre><code class="language-shell">sha1sum --check --quiet {{path/to/file.sha1}}
53855397
</code></pre>
5398+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
5399+
<pre><code class="language-shell">sha1sum --ignore-missing --check --quiet {{path/to/file.sha1}}
5400+
</code></pre>
53865401
<blockquote>
53875402
<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>
53885403
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>
@@ -5455,9 +5470,12 @@ <h2 id="examples-70"><a class="header" href="#examples-70">Examples</a></h2>
54555470
<p>Read a file of SHA224 sums and verify all files have matching checksums:</p>
54565471
<pre><code class="language-shell">sha224sum --check {{path/to/file.sha224}}
54575472
</code></pre>
5458-
<p>Only show a message for files for which verification fails:</p>
5473+
<p>Only show a message for missing files or when verification fails:</p>
54595474
<pre><code class="language-shell">sha224sum --check --quiet {{path/to/file.sha224}}
54605475
</code></pre>
5476+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
5477+
<pre><code class="language-shell">sha224sum --ignore-missing --check --quiet {{path/to/file.sha224}}
5478+
</code></pre>
54615479
<blockquote>
54625480
<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>
54635481
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>
@@ -5530,9 +5548,12 @@ <h2 id="examples-71"><a class="header" href="#examples-71">Examples</a></h2>
55305548
<p>Read a file of SHA256 sums and verify all files have matching checksums:</p>
55315549
<pre><code class="language-shell">sha256sum --check {{path/to/file.sha256}}
55325550
</code></pre>
5533-
<p>Only show a message for files for which verification fails:</p>
5551+
<p>Only show a message for missing files or when verification fails:</p>
55345552
<pre><code class="language-shell">sha256sum --check --quiet {{path/to/file.sha256}}
55355553
</code></pre>
5554+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
5555+
<pre><code class="language-shell">sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}
5556+
</code></pre>
55365557
<blockquote>
55375558
<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>
55385559
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>
@@ -5825,9 +5846,12 @@ <h2 id="examples-72"><a class="header" href="#examples-72">Examples</a></h2>
58255846
<p>Read a file of SHA384 sums and verify all files have matching checksums:</p>
58265847
<pre><code class="language-shell">sha384sum --check {{path/to/file.sha384}}
58275848
</code></pre>
5828-
<p>Only show a message for files for which verification fails:</p>
5849+
<p>Only show a message for missing files or when verification fails:</p>
58295850
<pre><code class="language-shell">sha384sum --check --quiet {{path/to/file.sha384}}
58305851
</code></pre>
5852+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
5853+
<pre><code class="language-shell">sha384sum --ignore-missing --check --quiet {{path/to/file.sha384}}
5854+
</code></pre>
58315855
<blockquote>
58325856
<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>
58335857
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>
@@ -5955,9 +5979,12 @@ <h2 id="examples-73"><a class="header" href="#examples-73">Examples</a></h2>
59555979
<p>Read a file of SHA512 sums and verify all files have matching checksums:</p>
59565980
<pre><code class="language-shell">sha512sum --check {{path/to/file.sha512}}
59575981
</code></pre>
5958-
<p>Only show a message for files for which verification fails:</p>
5982+
<p>Only show a message for missing files or when verification fails:</p>
59595983
<pre><code class="language-shell">sha512sum --check --quiet {{path/to/file.sha512}}
59605984
</code></pre>
5985+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
5986+
<pre><code class="language-shell">sha512sum --ignore-missing --check --quiet {{path/to/file.sha512}}
5987+
</code></pre>
59615988
<blockquote>
59625989
<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>
59635990
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

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: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,18 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
222222
<p>Calculate BLAKE2 checksums for multiple files:</p>
223223
<pre><code class="language-shell">b2sum {{path/to/file1}} {{path/to/file2}}
224224
</code></pre>
225-
<p>Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:</p>
226-
<pre><code class="language-shell">b2sum -c {{path/to/file.b2}}
227-
</code></pre>
228225
<p>Calculate the BLAKE2 checksum from stdin:</p>
229226
<pre><code class="language-shell">{{some_command}} | b2sum
230227
</code></pre>
228+
<p>Read a file of BLAKE2 sums and filenames and verify all files have matching checksums:</p>
229+
<pre><code class="language-shell">b2sum --check {{path/to/file.b2}}
230+
</code></pre>
231+
<p>Only show a message for missing files or when verification fails:</p>
232+
<pre><code class="language-shell">b2sum --check --quiet {{path/to/file.b2}}
233+
</code></pre>
234+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
235+
<pre><code class="language-shell">b2sum --ignore-missing --check --quiet {{path/to/file.b2}}
236+
</code></pre>
231237
<blockquote>
232238
<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>
233239
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

user/utils/md5sum.html

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,18 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
222222
<p>Calculate MD5 checksums for multiple files:</p>
223223
<pre><code class="language-shell">md5sum {{path/to/file1}} {{path/to/filen2}}
224224
</code></pre>
225-
<p>Read a file of MD5SUMs and verify all files have matching checksums:</p>
226-
<pre><code class="language-shell">md5sum -c {{path/to/file.md5}}
227-
</code></pre>
228225
<p>Calculate a MD5 checksum from the standard input:</p>
229226
<pre><code class="language-shell">echo &quot;{{text}}&quot; | md5sum
230227
</code></pre>
228+
<p>Read a file of MD5SUMs and verify all files have matching checksums:</p>
229+
<pre><code class="language-shell">md5sum --check {{path/to/file.md5}}
230+
</code></pre>
231+
<p>Only show a message for missing files or when verification fails:</p>
232+
<pre><code class="language-shell">md5sum --check --quiet {{path/to/file.md5}}
233+
</code></pre>
234+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
235+
<pre><code class="language-shell">md5sum --ignore-missing --check --quiet {{path/to/file.md5}}
236+
</code></pre>
231237
<blockquote>
232238
<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>
233239
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

user/utils/sha1sum.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,12 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
228228
<p>Read a file of SHA1 sums and verify all files have matching checksums:</p>
229229
<pre><code class="language-shell">sha1sum --check {{path/to/file.sha1}}
230230
</code></pre>
231-
<p>Only show a message for files for which verification fails:</p>
231+
<p>Only show a message for missing files or when verification fails:</p>
232232
<pre><code class="language-shell">sha1sum --check --quiet {{path/to/file.sha1}}
233233
</code></pre>
234+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
235+
<pre><code class="language-shell">sha1sum --ignore-missing --check --quiet {{path/to/file.sha1}}
236+
</code></pre>
234237
<blockquote>
235238
<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>
236239
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

user/utils/sha224sum.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,12 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
228228
<p>Read a file of SHA224 sums and verify all files have matching checksums:</p>
229229
<pre><code class="language-shell">sha224sum --check {{path/to/file.sha224}}
230230
</code></pre>
231-
<p>Only show a message for files for which verification fails:</p>
231+
<p>Only show a message for missing files or when verification fails:</p>
232232
<pre><code class="language-shell">sha224sum --check --quiet {{path/to/file.sha224}}
233233
</code></pre>
234+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
235+
<pre><code class="language-shell">sha224sum --ignore-missing --check --quiet {{path/to/file.sha224}}
236+
</code></pre>
234237
<blockquote>
235238
<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>
236239
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

user/utils/sha256sum.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,12 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
228228
<p>Read a file of SHA256 sums and verify all files have matching checksums:</p>
229229
<pre><code class="language-shell">sha256sum --check {{path/to/file.sha256}}
230230
</code></pre>
231-
<p>Only show a message for files for which verification fails:</p>
231+
<p>Only show a message for missing files or when verification fails:</p>
232232
<pre><code class="language-shell">sha256sum --check --quiet {{path/to/file.sha256}}
233233
</code></pre>
234+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
235+
<pre><code class="language-shell">sha256sum --ignore-missing --check --quiet {{path/to/file.sha256}}
236+
</code></pre>
234237
<blockquote>
235238
<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>
236239
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

user/utils/sha384sum.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,12 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
228228
<p>Read a file of SHA384 sums and verify all files have matching checksums:</p>
229229
<pre><code class="language-shell">sha384sum --check {{path/to/file.sha384}}
230230
</code></pre>
231-
<p>Only show a message for files for which verification fails:</p>
231+
<p>Only show a message for missing files or when verification fails:</p>
232232
<pre><code class="language-shell">sha384sum --check --quiet {{path/to/file.sha384}}
233233
</code></pre>
234+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
235+
<pre><code class="language-shell">sha384sum --ignore-missing --check --quiet {{path/to/file.sha384}}
236+
</code></pre>
234237
<blockquote>
235238
<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>
236239
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

user/utils/sha512sum.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,12 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
228228
<p>Read a file of SHA512 sums and verify all files have matching checksums:</p>
229229
<pre><code class="language-shell">sha512sum --check {{path/to/file.sha512}}
230230
</code></pre>
231-
<p>Only show a message for files for which verification fails:</p>
231+
<p>Only show a message for missing files or when verification fails:</p>
232232
<pre><code class="language-shell">sha512sum --check --quiet {{path/to/file.sha512}}
233233
</code></pre>
234+
<p>Only show a message for files for which verification fails, ignoring missing files:</p>
235+
<pre><code class="language-shell">sha512sum --ignore-missing --check --quiet {{path/to/file.sha512}}
236+
</code></pre>
234237
<blockquote>
235238
<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>
236239
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

0 commit comments

Comments
 (0)