Skip to content

Commit 9fe0030

Browse files
committed
deploy: 2ed80ff
1 parent 39d7c9c commit 9fe0030

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

user/print.html

+3
Original file line numberDiff line numberDiff line change
@@ -1865,6 +1865,9 @@ <h2 id="examples-13"><a class="header" href="#examples-13">Examples</a></h2>
18651865
<p>Follow symbolic links before copying:</p>
18661866
<pre><code class="language-shell">cp -L {{link}} {{path/to/target_directory}}
18671867
</code></pre>
1868+
<p>Use the first argument as the destination directory (useful for <code>xargs ... | cp -t &lt;DEST_DIR&gt;</code>):</p>
1869+
<pre><code class="language-shell">cp -t {{path/to/target_directory}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}
1870+
</code></pre>
18681871
<blockquote>
18691872
<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>
18701873
<p>Please note that, as uutils is a work in progress, some examples might fail.</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/cp.html

+3
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,9 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
337337
<p>Follow symbolic links before copying:</p>
338338
<pre><code class="language-shell">cp -L {{link}} {{path/to/target_directory}}
339339
</code></pre>
340+
<p>Use the first argument as the destination directory (useful for <code>xargs ... | cp -t &lt;DEST_DIR&gt;</code>):</p>
341+
<pre><code class="language-shell">cp -t {{path/to/target_directory}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}
342+
</code></pre>
340343
<blockquote>
341344
<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>
342345
<p>Please note that, as uutils is a work in progress, some examples might fail.</p>

0 commit comments

Comments
 (0)