uTools-Manuals/docs/linux/uncompress.html
2019-04-21 11:50:48 +08:00

19 lines
929 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h1 id="uncompress">uncompress</h1>
<p>用来解压.Z文件</p>
<h2 id="补充说明">补充说明</h2>
<p><strong>uncompress命令</strong> 用来解压缩由compress命令压缩后产生的“.Z”压缩包。</p>
<h3 id="语法">语法</h3>
<pre><code class="language-bash">uncompress(选项)(参数)</code></pre>
<h3 id="选项">选项</h3>
<pre><code class="language-bash">-f不提示用户强制覆盖掉目标文件
-c将结果送到标准输出无文件被改变
-r递归的操作方式。</code></pre>
<h3 id="参数">参数</h3>
<p>文件:指定要压缩的“.Z”压缩包。</p>
<h3 id="实例">实例</h3>
<p>先创建一个.Z压缩文件</p>
<pre><code class="language-bash">compress FileName</code></pre>
<p>解压:</p>
<pre><code class="language-bash">uncompress FileName.Z</code></pre>
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->