zipgrep.doc
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:3k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. ZIPGREP(1L)                                           ZIPGREP(1L)
  2. NAME
  3.        zipgrep - search files in a ZIP archive for lines matching
  4.        a pattern
  5. SYNOPSIS
  6.        zipgrep [egrep_options] pattern  file[.zip]  [file(s) ...]
  7.        [-x xfile(s) ...]
  8. DESCRIPTION
  9.        zipgrep  will  search files within a ZIP archive for lines
  10.        matching the given string or pattern.  zipgrep is a  shell
  11.        script  and  requires  egrep(1) and unzip(1L) to function.
  12.        Its output is identical to that of egrep(1).
  13. ARGUMENTS
  14.        pattern
  15.               The pattern to be located  within  a  ZIP  archive.
  16.               Any   string  or  regular  expression  accepted  by
  17.               egrep(1) may be used.  file[.zip] Path of  the  ZIP
  18.               archive.  (Wildcard expressions for the ZIP archive
  19.               name are not supported.)  If the  literal  filename
  20.               is  not  found,  the suffix .zip is appended.  Note
  21.               that self-extracting ZIP files  are  supported,  as
  22.               with  any  other ZIP archive; just specify the .exe
  23.               suffix (if any) explicitly.
  24.        [file(s)]
  25.               An optional list of  archive  members  to  be  pro-
  26.               cessed,  separated  by  spaces.  If no member files
  27.               are specified, all members of the ZIP  archive  are
  28.               searched.   Regular  expressions (wildcards) may be
  29.               used to match multiple members:
  30.               *      matches a sequence of 0 or more characters
  31.               ?      matches exactly 1 character
  32.               [...]  matches any single  character  found  inside
  33.                      the  brackets;  ranges  are  specified  by a
  34.                      beginning character, a hyphen, and an ending
  35.                      character.   If  an  exclamation  point or a
  36.                      caret (`!' or `^') follows the left bracket,
  37.                      then  the  range  of  characters  within the
  38.                      brackets is complemented (that is,  anything
  39.                      except the characters inside the brackets is
  40.                      considered a match).
  41.               (Be sure to quote any character that  might  other-
  42.               wise  be  interpreted  or modified by the operating
  43.               system.)
  44.        [-x xfile(s)]
  45.               An optional list of archive members to be  excluded
  46.               from  processing.   Since wildcard characters match
  47. Info-ZIP                 28 November 1998                       1
  48. ZIPGREP(1L)                                           ZIPGREP(1L)
  49.               directory separators (`/'), this option may be used
  50.               to  exclude  any  files that are in subdirectories.
  51.               For example, ``zipgrep grumpy foo *.[ch]  -x  */*''
  52.               would  search  for  the  string ``grumpy'' in all C
  53.               source files in the main directory of  the  ``foo''
  54.               archive,  but  none in any subdirectories.  Without
  55.               the -x option, all C source files in  all  directo-
  56.               ries within the zipfile would be searched.
  57. OPTIONS
  58.        All  options  prior to the ZIP archive filename are passed
  59.        to egrep(1).
  60. SEE ALSO
  61.        egrep(1), unzip(1L),  zip(1L),  funzip(1L),  zipcloak(1L),
  62.        zipinfo(1L), zipnote(1L), zipsplit(1L)
  63. URL
  64.        The     Info-ZIP     home    page    is    currently    at
  65.        http://www.cdrom.com/pub/infozip/ .
  66. AUTHORS
  67.        zipgrep was written by Jean-loup Gailly.
  68. Info-ZIP                 28 November 1998                       2