वर्बोज़ आउटपुट के बिना एक गंतव्य फ़ोल्डर में एक युद्ध फ़ाइल को अनपैक करें


35

मुझे unzipवर्बोज़ आउटपुट के बिना युद्ध फ़ाइल निकालने की आवश्यकता है

मैं इसे इस तरह कर रहा हूँ -

unzip myFile.war -d /home/app/

लेकिन यह वर्बोज़ आउटपुट बनाता है। मैं इसे कैसे रोक सकता हूं?

जवाबों:


55

आप चुपचाप खोल सकते हैं, बस -qq विकल्प का उपयोग करें (देखें 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.

आपकी आज्ञा बन जाती है:

unzip -qq myFile.war -d /home/app/
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.