Unzip은 하나의 기준만 허용합니까?

Unzip은 하나의 기준만 허용합니까?

ZIP 파일이 저장된 대용량 파일러 장치에서 파일을 추출하기 위해 unzip을 사용하고 있습니다.

unzip -o somefile.zip -c *somecriteria* -d somedirectory

잘 작동하지만 검색 범위를 좁히기 위해 다른 기준을 추가하려고 하면 파일이 있더라도 압축을 풀면 아무것도 추출되지 않습니다.

unzip -o somefile.zip -c *criteriaA* -c *criteriaB* -d somedirectory

ZIP에서 파일을 추출할 때 기준을 지정하는 방법이 있습니까?

답변1

unzip 명령줄이 혼동된 것 같습니다.

-bash-3.1$ unzip -h
UnZip 5.52 of 28 February 2005, by Info-ZIP.  Maintained by C. Spieler.  Send
bug reports using http://www.info-zip.org/zip-bug.html; see README for details.

Usage: unzip [-Z] [-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir]
Default action is to extract files in list, except those in xlist, to exdir;
file[.zip] may be a wildcard.  -Z => ZipInfo mode ("unzip -Z" for usage).

-p  extract files to pipe, no messages     -l  list files (short format)
-f  freshen existing files, create none    -t  test compressed archive data
-u  update files, create if necessary      -z  display archive comment
-x  exclude files that follow (in xlist)   -d  extract files into exdir

modifiers:                                   -q  quiet mode (-qq => quieter)
-n  never overwrite existing files         -a  auto-convert any text files
-o  overwrite files WITHOUT prompting      -aa treat ALL files as text
-j  junk paths (do not make directories)   -v  be verbose/print version info
-C  match filenames case-insensitively     -L  make (some) names lowercase
-X  restore UID/GID info                   -V  retain VMS version numbers
-K  keep setuid/setgid/tacky permissions   -M  pipe through "more" pager
Examples (see unzip.txt for more info):
unzip data1 -x joe   => extract all files except joe from zipfile data1.zip
unzip -p foo | more  => send contents of foo.zip via pipe into program more
unzip -fo foo ReadMe => quietly replace existing ReadMe if archive file newer

유닉스에서는

unzip zipfile.zip -d destdir "wildcard1" "wildcard2"

작동해야합니다. (와일드카드 주위의 따옴표는 쉘이 와일드카드를 확장하는 것을 방지하기 위한 것입니다.)

관련 정보