CGREP.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. CGREP(1)                  Minix Programmer's Manual                   CGREP(1)
  2. NAME
  3.      cgrep - grep and display context
  4. SYNOPSIS
  5.      cgrep [-a n] [-b n] [-f] [-l n]  [-n] [-w n] pattern [file] ...
  6. OPTIONS
  7.      -a   How many lines to display after the matching line
  8.      -b   How many lines to display before the matching line
  9.      -f   Suppress file name in the output
  10.      -l   Lines are truncated to this length before comparison
  11.      -n   Suppress line numbers in the output
  12.      -w   Sets window size (same as -a n -b n)
  13. EXAMPLES
  14.      cgrep -w 3 hello file1
  15.                          # Print 3 lines of context each way
  16. DESCRIPTION
  17.      Cgrep is a program like grep, except that it also can print a  few  lines
  18.      above  and/or  below the matching lines.  It also prints the line numbers
  19.      of the output.
  20. SEE ALSO
  21.      grep(1), fgrep(1).
  22.                                                                              1