Skip to content

Commit 63121cb

Browse files
committed
deploy: c249eba
1 parent e801137 commit 63121cb

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

user/print.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -1020,19 +1020,19 @@ <h2 id="options-7"><a class="header" href="#options-7">Options</a></h2>
10201020
</dl>
10211021
<h2 id="examples-5"><a class="header" href="#examples-5">Examples</a></h2>
10221022
<p>Print the contents of a file to the standard output:</p>
1023-
<pre><code class="language-shell">cat {{file}}
1023+
<pre><code class="language-shell">cat {{path/to/file}}
10241024
</code></pre>
1025-
<p>Concatenate several files into the target file:</p>
1026-
<pre><code class="language-shell">cat {{file1}} {{file2}} &gt; {{target_file}}
1025+
<p>Concatenate several files into an output file:</p>
1026+
<pre><code class="language-shell">cat {{path/to/file1}} {{path/to/file2}} &gt; {{path/to/output_file}}
10271027
</code></pre>
1028-
<p>Append several files into the target file:</p>
1029-
<pre><code class="language-shell">cat {{file1}} {{file2}} &gt;&gt; {{target_file}}
1028+
<p>Append several files into an output file:</p>
1029+
<pre><code class="language-shell">cat {{path/to/file1}} {{path/to/file2}} &gt;&gt; {{path/to/output_file}}
10301030
</code></pre>
10311031
<p>Number all output lines:</p>
1032-
<pre><code class="language-shell">cat -n {{file}}
1032+
<pre><code class="language-shell">cat -n {{path/to/file}}
10331033
</code></pre>
10341034
<p>Display non-printable and whitespace characters (with <code>M-</code> prefix if non-ASCII):</p>
1035-
<pre><code class="language-shell">cat -v -t -e {{file}}
1035+
<pre><code class="language-shell">cat -v -t -e {{path/to/file}}
10361036
</code></pre>
10371037
<blockquote>
10381038
<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>

user/searchindex.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

user/searchindex.json

+1-1
Large diffs are not rendered by default.

user/utils/cat.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -232,19 +232,19 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
232232
</dl>
233233
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
234234
<p>Print the contents of a file to the standard output:</p>
235-
<pre><code class="language-shell">cat {{file}}
235+
<pre><code class="language-shell">cat {{path/to/file}}
236236
</code></pre>
237-
<p>Concatenate several files into the target file:</p>
238-
<pre><code class="language-shell">cat {{file1}} {{file2}} &gt; {{target_file}}
237+
<p>Concatenate several files into an output file:</p>
238+
<pre><code class="language-shell">cat {{path/to/file1}} {{path/to/file2}} &gt; {{path/to/output_file}}
239239
</code></pre>
240-
<p>Append several files into the target file:</p>
241-
<pre><code class="language-shell">cat {{file1}} {{file2}} &gt;&gt; {{target_file}}
240+
<p>Append several files into an output file:</p>
241+
<pre><code class="language-shell">cat {{path/to/file1}} {{path/to/file2}} &gt;&gt; {{path/to/output_file}}
242242
</code></pre>
243243
<p>Number all output lines:</p>
244-
<pre><code class="language-shell">cat -n {{file}}
244+
<pre><code class="language-shell">cat -n {{path/to/file}}
245245
</code></pre>
246246
<p>Display non-printable and whitespace characters (with <code>M-</code> prefix if non-ASCII):</p>
247-
<pre><code class="language-shell">cat -v -t -e {{file}}
247+
<pre><code class="language-shell">cat -v -t -e {{path/to/file}}
248248
</code></pre>
249249
<blockquote>
250250
<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>

0 commit comments

Comments
 (0)