詳細出力なしでwarファイルを宛先フォルダーに解凍します


35

unzip詳細な出力なしでwarファイルを抽出する必要があります

私はこのようにしています-

unzip myFile.war -d /home/app/

しかし、これは詳細な出力を作成します。どうすればそれを防ぐことができますか?

回答:


55

-qqオプションを使用するだけで、静かに解凍できます(を参照man unzip

   -q     perform  operations  quietly  (-qq  = even quieter).  Ordinarily
          unzip prints the names of the files it's extracting or  testing,
          the extraction methods, any file or zipfile comments that may be
          stored in the archive, and possibly a summary when finished with
          each  archive.   The -q[q] options suppress the printing of some
          or all of these messages.

コマンドは次のようになります。

unzip -qq myFile.war -d /home/app/
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.