我需要提取unzip
没有详细输出的战争文件
我正在这样-
unzip myFile.war -d /home/app/
但这会产生冗长的输出。我该如何预防呢?
我需要提取unzip
没有详细输出的战争文件
我正在这样-
unzip myFile.war -d /home/app/
但这会产生冗长的输出。我该如何预防呢?
Answers:
您可以使用-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/