FGREP.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. FGREP(1)                  Minix Programmer's Manual                   FGREP(1)
  2. NAME
  3.      fgrep - fixed grep
  4. SYNOPSIS
  5.      fgrep [-cfhlnsv] [string_file] [string] [file] ...
  6. OPTIONS
  7.      -c   Count matching lines and only print count, not the lines
  8.      -f   Take strings from file named in following argument
  9.      -h   Omit file headers from printout
  10.      -l   List file names once only
  11.      -n   Each line is preceded by its line number
  12.      -s   Status only, no output
  13.      -v   Print only lines not matching
  14. EXAMPLES
  15.      fgrep % prog.c      # Print lines containing % sign
  16.      fgrep -f pattern prog.c
  17.                          # Take strings from pattern
  18. DESCRIPTION
  19.      Fgrep is essentially the same as grep, except that it only  searches  for
  20.      lines  containing  literal strings (no wildcard characters).  The pattern
  21.      may consist of several lines with one string to search on each line.
  22. SEE ALSO
  23.      cgrep(1), grep(1).
  24.                                                                              1