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

操作系统开发

开发平台:

WINDOWS

  1. .TH FGREP 1
  2. .SH NAME
  3. fgrep - fixed grep
  4. .SH SYNOPSIS
  5. fBfgrepfR [fB-cfhlnsvfR]fR [fIstring_filefR] [fIstringfR] [fIfilefR] ...fR
  6. .br
  7. .de FL
  8. .TP
  9. \fB\$1\fR
  10. \$2
  11. ..
  12. .de EX
  13. .TP 20
  14. \fB\$1\fR
  15. # \$2
  16. ..
  17. .SH OPTIONS
  18. .FL "-c" "Count matching lines and only print count, not the lines"
  19. .FL "-f" "Take strings from file named in following argument"
  20. .FL "-h" "Omit file headers from printout"
  21. .FL "-l" "List file names once only"
  22. .FL "-n" "Each line is preceded by its line number"
  23. .FL "-s" "Status only, no output"
  24. .FL "-v" "Print only lines not matching"
  25. .SH EXAMPLES
  26. .EX "fgrep % prog.c" "Print lines containing % sign"
  27. .EX "fgrep -f pattern prog.c" "Take strings from fIpatternfR"
  28. .SH DESCRIPTION
  29. .PP
  30. fIFgrepfR is essentially the same as grep, except that it only searches
  31. for lines containing literal strings (no wildcard characters).  The pattern
  32. may consist of several lines with one string to search on each line.
  33. .SH "SEE ALSO"
  34. .BR cgrep (1),
  35. .BR grep (1).