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

操作系统开发

开发平台:

C/C++

  1. CMP(1)                    Minix Programmer's Manual                     CMP(1)
  2. NAME
  3.      cmp - compare two files
  4. SYNOPSIS
  5.      cmp [-ls] file1 file2
  6. OPTIONS
  7.      -l   Loud mode. Print bytes that differ (in octal)
  8.      -s   Silent mode.  Print nothing, just return exit status
  9. EXAMPLES
  10.      cmp file1 file2     # Tell whether the files are the same
  11.      cmp -l file1 file2  # Print all corresponding bytes that differ
  12. DESCRIPTION
  13.      Two files are  compared.   If  they  are  identical,  exit  status  0  is
  14.      returned.   If  they  differ,  exit  status  1 is returned.  If the files
  15.      cannot be opened, exit  status  2  is  returned.   If  one  of  the  file
  16.      arguments is -, then stdin is compared to the other file.
  17. SEE ALSO
  18.      comm(1), diff(1).
  19.                                                                              1