tôi cần giải nén một tập tin chiến tranh unzip
mà không có đầu ra dài dòng
tôi đang làm nó như thế này -
unzip myFile.war -d /home/app/
nhưng điều này tạo ra đầu ra dài dòng. Làm thế nào tôi có thể ngăn chặn điều đó?
tôi cần giải nén một tập tin chiến tranh unzip
mà không có đầu ra dài dòng
tôi đang làm nó như thế này -
unzip myFile.war -d /home/app/
nhưng điều này tạo ra đầu ra dài dòng. Làm thế nào tôi có thể ngăn chặn điều đó?
Câu trả lời:
Bạn có thể giải nén lặng lẽ, chỉ cần sử dụng tùy chọn -qq (xem 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.
Lệnh của bạn trở thành:
unzip -qq myFile.war -d /home/app/