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

19

eu preciso extrair um arquivo war com unzip sem saída detalhada

estou fazendo assim -

unzip myFile.war -d /home/app/

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

    
por Mohammad Adil 01.05.2014 / 16:10

1 resposta

31

Você pode descompactar silenciosamente, apenas use a opção -qq (veja 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/
    
por Sylvain Pineau 01.05.2014 / 16:17