คลายไฟล์ war ลงในโฟลเดอร์ปลายทางโดยไม่มีเอาต์พุต verbose


35

ฉันต้องการแยกไฟล์ war unzipโดยไม่มีเอาต์พุต verbose

ฉันทำแบบนี้ -

unzip myFile.war -d /home/app/

แต่สิ่งนี้สร้างผลลัพธ์ verbose ฉันจะป้องกันได้อย่างไร

คำตอบ:


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/
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.