Skip to content

Commit 210a608

Browse files
committed
deploy: 2ed80ff
1 parent 23c6464 commit 210a608

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

user/print.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4978,16 +4978,16 @@ <h2 id="options-55"><a class="header" href="#options-55">Options</a></h2>
49784978
</dl>
49794979
<h2 id="examples-52"><a class="header" href="#examples-52">Examples</a></h2>
49804980
<p>Run a process that can live beyond the terminal:</p>
4981-
<pre><code class="language-shell">nohup {{command}} {{command_arguments}}
4981+
<pre><code class="language-shell">nohup {{command}} {{argument1 argument2 ...}}
49824982
</code></pre>
49834983
<p>Launch <code>nohup</code> in background mode:</p>
4984-
<pre><code class="language-shell">nohup {{command}} {{command_arguments}} &amp;
4984+
<pre><code class="language-shell">nohup {{command}} {{argument1 argument2 ...}} &amp;
49854985
</code></pre>
49864986
<p>Run a shell script that can live beyond the terminal:</p>
49874987
<pre><code class="language-shell">nohup {{path/to/script.sh}} &amp;
49884988
</code></pre>
49894989
<p>Run a process and write the output to a specific file:</p>
4990-
<pre><code class="language-shell">nohup {{command}} {{command_arguments}} &gt; {{path/to/output_file}} &amp;
4990+
<pre><code class="language-shell">nohup {{command}} {{argument1 argument2 ...}} &gt; {{path/to/output_file}} &amp;
49914991
</code></pre>
49924992
<blockquote>
49934993
<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/nohup.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -195,16 +195,16 @@ <h2 id="options"><a class="header" href="#options">Options</a></h2>
195195
</dl>
196196
<h2 id="examples"><a class="header" href="#examples">Examples</a></h2>
197197
<p>Run a process that can live beyond the terminal:</p>
198-
<pre><code class="language-shell">nohup {{command}} {{command_arguments}}
198+
<pre><code class="language-shell">nohup {{command}} {{argument1 argument2 ...}}
199199
</code></pre>
200200
<p>Launch <code>nohup</code> in background mode:</p>
201-
<pre><code class="language-shell">nohup {{command}} {{command_arguments}} &amp;
201+
<pre><code class="language-shell">nohup {{command}} {{argument1 argument2 ...}} &amp;
202202
</code></pre>
203203
<p>Run a shell script that can live beyond the terminal:</p>
204204
<pre><code class="language-shell">nohup {{path/to/script.sh}} &amp;
205205
</code></pre>
206206
<p>Run a process and write the output to a specific file:</p>
207-
<pre><code class="language-shell">nohup {{command}} {{command_arguments}} &gt; {{path/to/output_file}} &amp;
207+
<pre><code class="language-shell">nohup {{command}} {{argument1 argument2 ...}} &gt; {{path/to/output_file}} &amp;
208208
</code></pre>
209209
<blockquote>
210210
<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)