语法高亮,滚动条美化,设置页面调整

This commit is contained in:
fofolee
2019-04-19 02:41:09 +08:00
parent 1e8f76c000
commit 359d29ee0b
1590 changed files with 12328 additions and 11441 deletions

View File

@@ -3,12 +3,12 @@
<h2 id="补充说明">补充说明</h2>
<p><strong>wait命令</strong> 用来等待指令的指令直到其执行完毕后返回终端。该指令常用于shell脚本编程中待指定的指令执行完成后才会继续执行后面的任务。该指令等待作业时在作业标识号前必须添加备份号“%”。</p>
<h3 id="语法">语法</h3>
<pre><code>wait(参数)</code></pre>
<pre><code class="language-bash">wait(参数)</code></pre>
<h3 id="参数">参数</h3>
<p>进程或作业标示:指定进程号或者作业号。</p>
<h3 id="实例">实例</h3>
<p>使用命令wait等待作业号为1的作业完成后再返回输入如下命令</p>
<pre><code>wait %1 #等待作业号为3的作业完成 </code></pre>
<pre><code class="language-bash">wait %1 #等待作业号为3的作业完成 </code></pre>
<p>执行上面的指令后,将输出指定作业号的指令,如下所示:</p>
<pre><code>find / -name password</code></pre>
<pre><code class="language-bash">find / -name password</code></pre>
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->