상세 출력없이 대상 파일로 war 파일 압축 풀기


35

unzip자세한 출력없이 war 파일을 추출해야합니다

나는 이것을 이렇게하고있다-

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/
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.