Bir savaş dosyasını ayrıntılı çıktı olmadan bir hedef klasöre çıkartın


35

unzipayrıntılı çıktı olmayan bir savaş dosyasını çıkarmam gerekiyor

Ben böyle yapıyorum -

unzip myFile.war -d /home/app/

ancak bu ayrıntılı çıktı oluşturur. Bunu nasıl önleyebilirim?

Yanıtlar:


55

Sessizce açabilirsiniz, sadece -qq seçeneğini kullanın (bkz. 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.

Emriniz:

unzip -qq myFile.war -d /home/app/
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.