mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-12-20 10:25:54 +08:00
语法高亮,滚动条美化,设置页面调整
This commit is contained in:
@@ -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/ -->
|
||||
|
||||
Reference in New Issue
Block a user