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

操作系统开发

开发平台:

WINDOWS

  1. CDIFF(1)                  Minix Programmer's Manual                   CDIFF(1)
  2. NAME
  3.      cdiff - context diff
  4. SYNOPSIS
  5.      cdiff [-cn] oldfile newfile
  6. OPTIONS
  7.      -c   Provide n lines of context
  8. EXAMPLES
  9.      cdiff old new >f    # Write context diff on f
  10.      cdiff -c1 old new >f
  11.                          # Use only 1 line of context
  12. DESCRIPTION
  13.      Cdiff produces a context diff by  first  running  diff  and  then  adding
  14.      context.  Some  update  programs,  like  patch,  can use context diffs to
  15.      update files, even in the presence of other, independent changes.
  16. SEE ALSO
  17.      cmp(1), diff(1), patch(1).
  18.                                                                              1