Skip to content

Commit 8d0fa0c

Browse files
committed
deploy: f0e8d44
1 parent cc480d1 commit 8d0fa0c

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
@@ -2121,6 +2121,9 @@ <h2 id="examples-14"><a class="header" href="#examples-14">Examples</a></h2>
21212121
<p>Copy a directory recursively, in verbose mode (shows files as they are copied):</p>
21222122
<pre><code class="language-shell">cp -vR {{path/to/source_directory}} {{path/to/target_directory}}
21232123
</code></pre>
2124+
<p>Copy multiple files at once to a directory:</p>
2125+
<pre><code class="language-shell">cp -t {{path/to/destination_directory}} {{path/to/file1 path/to/file2 ...}}
2126+
</code></pre>
21242127
<p>Copy text files to another location, in interactive mode (prompts user before overwriting):</p>
21252128
<pre><code class="language-shell">cp -i {{*.txt}} {{path/to/target_directory}}
21262129
</code></pre>

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
@@ -334,6 +334,9 @@ <h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
334334
<p>Copy a directory recursively, in verbose mode (shows files as they are copied):</p>
335335
<pre><code class="language-shell">cp -vR {{path/to/source_directory}} {{path/to/target_directory}}
336336
</code></pre>
337+
<p>Copy multiple files at once to a directory:</p>
338+
<pre><code class="language-shell">cp -t {{path/to/destination_directory}} {{path/to/file1 path/to/file2 ...}}
339+
</code></pre>
337340
<p>Copy text files to another location, in interactive mode (prompts user before overwriting):</p>
338341
<pre><code class="language-shell">cp -i {{*.txt}} {{path/to/target_directory}}
339342
</code></pre>

0 commit comments

Comments
 (0)