zipgrep.1
资源名称:unzip540.zip [点击查看]
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:4k
源码类别:
压缩解压
开发平台:
MultiPlatform
- ." Info-ZIP grants permission to any individual or institution to use, copy,
- ." or redistribute this software, so long as: (1) all of the original files
- ." are included; (2) it is not sold for profit; and (3) this notice is re-
- ." tained. See the UnZip COPYING file for details.
- ."
- ." zipgrep.1 by Greg Roelofs.
- ."
- ." =========================================================================
- ." define .Y macro (for user-command examples; normal Courier font):
- .de Y
- .ft CW
- .in +4n
- .nf
- &\$1
- .ft
- .in
- .fi
- ..
- ." =========================================================================
- .TH ZIPGREP 1L "28 November 1998" "Info-ZIP"
- .SH NAME
- zipgrep - search files in a ZIP archive for lines matching a pattern
- .PD
- .SH SYNOPSIS
- fBzipgrepfP [fBegrep_optionsfP] fIpatternfP
- fIfilefP[fI.zipfP] [fIfile(s)fP .|.|.]
- [fB-xfP fIxfile(s)fP .|.|.]
- .PD
- ." =========================================================================
- .SH DESCRIPTION
- fIzipgrepfP will search files within a ZIP archive for lines matching
- the given string or pattern. fIzipgrepfP is a shell script and requires
- fIegrepfP(1) and fIunzipfP(1L) to function. Its output is identical to
- that of fIegrepfP(1).
- .PD
- ." =========================================================================
- .SH ARGUMENTS
- .TP
- .IP fIpatternfP
- The pattern to be located within a ZIP archive. Any string or regular
- expression accepted by fIegrepfP(1) may be used.
- .IR 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 fC.zipfR
- is appended. Note that self-extracting ZIP files are supported, as with any
- other ZIP archive; just specify the fC.exefR suffix (if any) explicitly.
- .IP [fIfile(s)fP]
- 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:
- .RS
- .IP *
- matches a sequence of 0 or more characters
- .IP ?
- matches exactly 1 character
- .IP [.|.|.]
- matches any single character found inside the brackets; ranges are specified
- by a beginning character, a hyphen, and an ending character. If an exclamation
- point or a caret (`!' or `^') follows the left bracket, then the range of
- characters within the brackets is complemented (that is, anything fIexceptfP
- the characters inside the brackets is considered a match).
- .RE
- .IP
- (Be sure to quote any character that might otherwise be interpreted or
- modified by the operating system.)
- .IP [fB-xfP fIxfile(s)fP]
- 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, ``fCzipgrep grumpy foo *.[ch] -x */*fR'' 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 fB-xfP
- option, all C source files in all directories within the zipfile would be
- searched.
- ." =========================================================================
- .SH OPTIONS
- All options prior to the ZIP archive filename are passed to fIegrepfP(1).
- .PD
- ." =========================================================================
- .SH "SEE ALSO"
- fIegrepfP(1), fIunzipfP(1L), fIzipfP(1L), fIfunzipfP(1L),
- fIzipcloakfP(1L), fIzipinfofP(1L), fIzipnotefP(1L), fIzipsplitfP(1L)
- .PD
- ." =========================================================================
- .SH URL
- The Info-ZIP home page is currently at fChttp://www.cdrom.com/pub/infozip/fR .
- .PD
- ." =========================================================================
- .SH AUTHORS
- fIzipgrepfP was written by Jean-loup Gailly.
- .PD