You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Launch <code>nohup</code> in background mode:</p>
4984
-
<pre><codeclass="language-shell">nohup {{command}} {{command_arguments}} &
4984
+
<pre><codeclass="language-shell">nohup {{command}} {{argument1 argument2 ...}} &
4985
4985
</code></pre>
4986
4986
<p>Run a shell script that can live beyond the terminal:</p>
4987
4987
<pre><codeclass="language-shell">nohup {{path/to/script.sh}} &
4988
4988
</code></pre>
4989
4989
<p>Run a process and write the output to a specific file:</p>
4990
-
<pre><codeclass="language-shell">nohup {{command}} {{command_arguments}} > {{path/to/output_file}} &
4990
+
<pre><codeclass="language-shell">nohup {{command}} {{argument1 argument2 ...}} > {{path/to/output_file}} &
4991
4991
</code></pre>
4992
4992
<blockquote>
4993
4993
<p>The examples are provided by the <ahref="https://tldr.sh">tldr-pages project</a> under the <ahref="https://github.com/tldr-pages/tldr/blob/main/LICENSE.md">CC BY 4.0 License</a>.</p>
<p>Launch <code>nohup</code> in background mode:</p>
201
-
<pre><codeclass="language-shell">nohup {{command}} {{command_arguments}} &
201
+
<pre><codeclass="language-shell">nohup {{command}} {{argument1 argument2 ...}} &
202
202
</code></pre>
203
203
<p>Run a shell script that can live beyond the terminal:</p>
204
204
<pre><codeclass="language-shell">nohup {{path/to/script.sh}} &
205
205
</code></pre>
206
206
<p>Run a process and write the output to a specific file:</p>
207
-
<pre><codeclass="language-shell">nohup {{command}} {{command_arguments}} > {{path/to/output_file}} &
207
+
<pre><codeclass="language-shell">nohup {{command}} {{argument1 argument2 ...}} > {{path/to/output_file}} &
208
208
</code></pre>
209
209
<blockquote>
210
210
<p>The examples are provided by the <ahref="https://tldr.sh">tldr-pages project</a> under the <ahref="https://github.com/tldr-pages/tldr/blob/main/LICENSE.md">CC BY 4.0 License</a>.</p>
0 commit comments