Rozpakuj plik wojenny do folderu docelowego bez pełnych danych wyjściowych

35

muszę wyodrębnić plik wojny unzipbez pełnego wyjścia

robię to w ten sposób -

unzip myFile.war -d /home/app/

ale tworzy to pełne wyniki. Jak mogę temu zapobiec?

Mohammad Adil
źródło

Odpowiedzi:

55

Możesz rozpakować po cichu, po prostu użyj opcji -qq (patrz 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.

Twoje polecenie staje się:

unzip -qq myFile.war -d /home/app/
Sylvain Pineau
źródło