Scompatta un file di guerra in una cartella di destinazione senza output dettagliato


35

ho bisogno di estrarre un file di guerra unzipsenza output dettagliato

lo sto facendo in questo modo -

unzip myFile.war -d /home/app/

ma questo crea un output dettagliato. Come posso impedirlo?

Risposte:


55

Puoi decomprimerlo tranquillamente, basta usare l'opzione -qq (vedi 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.

Il tuo comando diventa:

unzip -qq myFile.war -d /home/app/
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.