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

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,9 +3,9 @@
<h2 id="补充说明">补充说明</h2>
<p><strong>unzip命令</strong> 用于解压缩由zip命令压缩的“.zip”压缩包。</p>
<h3 id="语法">语法</h3>
<pre><code>unzip(选项)(参数)</code></pre>
<pre><code class="language-bash">unzip(选项)(参数)</code></pre>
<h3 id="选项">选项</h3>
<pre><code>-c将解压缩的结果显示到屏幕上并对字符做适当的转换
<pre><code class="language-bash">-c将解压缩的结果显示到屏幕上并对字符做适当的转换
-f更新现有的文件
-l显示压缩文件内所包含的文件
-p与-c参数类似会将解压缩的结果显示到屏幕上但不会执行任何的转换
@@ -33,11 +33,11 @@
<p>压缩包:指定要解压的“.zip”压缩包。</p>
<h3 id="实例">实例</h3>
<p>将压缩文件text.zip在当前目录下解压缩。</p>
<pre><code>unzip test.zip</code></pre>
<pre><code class="language-bash">unzip test.zip</code></pre>
<p>将压缩文件text.zip在指定目录<code>/tmp</code>下解压缩如果已有相同的文件存在要求unzip命令不覆盖原先的文件。</p>
<pre><code>unzip -n test.zip -d /tmp</code></pre>
<pre><code class="language-bash">unzip -n test.zip -d /tmp</code></pre>
<p>查看压缩文件目录,但不解压。</p>
<pre><code>unzip -v test.zip</code></pre>
<pre><code class="language-bash">unzip -v test.zip</code></pre>
<p>将压缩文件test.zip在指定目录<code>/tmp</code>下解压缩如果已有相同的文件存在要求unzip命令覆盖原先的文件。</p>
<pre><code>unzip -o test.zip -d tmp/</code></pre>
<pre><code class="language-bash">unzip -o test.zip -d tmp/</code></pre>
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->