Descompacte um arquivo war em uma pasta de destino sem saída detalhada

35

eu preciso extrair um arquivo de guerra unzipsem saída detalhada

eu estou fazendo assim -

unzip myFile.war -d /home/app/

mas isso cria saída detalhada. Como posso evitar isso?

Mohammad Adil
fonte

Respostas:

55

Você pode descompactar silenciosamente, basta usar a opção -qq (consulte 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.

Seu comando se torna:

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