Buka paket file perang ke folder tujuan tanpa output verbal

35

saya perlu mengekstrak file perang unziptanpa output verbose

saya melakukannya seperti ini -

unzip myFile.war -d /home/app/

tetapi ini menciptakan keluaran verbose. Bagaimana saya bisa mencegahnya?

Mohammad Adil
sumber

Jawaban:

55

Anda dapat unzip diam-diam, cukup gunakan opsi -qq (lihat 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.

Perintah Anda menjadi:

unzip -qq myFile.war -d /home/app/
Sylvain Pineau
sumber