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

操作系统开发

开发平台:

C/C++

  1. COMM(1)                   Minix Programmer's Manual                    COMM(1)
  2. NAME
  3.      comm - print lines common to two sorted files
  4. SYNOPSIS
  5.      comm [-123] file1 file2
  6. OPTIONS
  7.      -1   Suppress column 1 (lines present only in file1)
  8.      -2   Suppress column 2 (lines present only in file2)
  9.      -3   Suppress column 3 (lines present in both files)
  10. EXAMPLES
  11.      comm file1 file2    # Print all three columns
  12.      comm -12 file1 file2
  13.                          # Print only lines common to both files
  14. DESCRIPTION
  15.      Two sorted files are read  and  compared.   A  three  column  listing  is
  16.      produced.   Files  only in file1 are in column 1; files only in file2 are
  17.      in column 2; files common to both files are in column 3.  The file name -
  18.      means stdin.
  19. SEE ALSO
  20.      cmp(1), diff(1), sort(1).
  21.                                                                              1