Copyright © tutorialspoint.com
| Tag | Description | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| pattern | |||||||||
| The pattern to be located within a ZIP archive. Any string or regular expression accepted by egrep(1) may be used. file[.zip] Path of the ZIP archive. (Wildcard expressions for the ZIP archive name are not supported.) If the literal filename is not found, the suffix .zip is appended. Note that self-extracting ZIP files are supported, as with any other ZIP archive; just specify the .exe suffix (if any) explicitly. | |||||||||
| [file(s)] |
An optional list of archive members to be processed, separated by spaces.
If no member files are specified, all members of the ZIP archive are searched.
Regular expressions (wildcards) may be used to match multiple members:
| ||||||||
| (Be sure to quote any character that might otherwise be interpreted or modified by the operating system.) | |||||||||
| [-x xfile(s)] | An optional list of archive members to be excluded from processing. Since wildcard characters match directory separators (/), this option may be used to exclude any files that are in subdirectories. For example, zipgrep grumpy foo *.[ch] -x */* would search for the string grumpy in all C source files in the main directory of the foo archive, but none in any subdirectories. Without the -x option, all C source files in all directories within the zipfile would be searched. | ||||||||
Copyright © tutorialspoint.com