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

操作系统开发

开发平台:

WINDOWS

  1. DIFF(1)                   Minix Programmer's Manual                    DIFF(1)
  2. NAME
  3.      diff - print differences between two files
  4. SYNOPSIS
  5.      diff   [-c | -e | -C n] [-br]file1 file2
  6. OPTIONS
  7.      -C n Produce output that contains n lines of context
  8.      -b   Ignore white space when comparing
  9.      -c   Produce output that contains three lines of context
  10.      -e   Produce an ed-script to convert file1 into file2
  11.      -r   Apply diff recursively to files and directories of
  12. EXAMPLES
  13.      diff file1 file2    # Print differences between 2 files
  14.      diff -C 0 file1 file2
  15.                          # Same as above
  16.      diff -C 3 file1 file2
  17.                          # Output three lines of context with every
  18.      diff -c file1 file2 # Same
  19.      diff /etc /dev      # Compares recursively the directories /etc and /dev
  20.      diff passwd /etc    # Compares ./passwd to /etc/passwd
  21. DESCRIPTION
  22.      the same name, when file1 and  file2  are  both  directories"  difference
  23.      encountered"
  24.      Diff compares two files and generates a list of lines telling how the two
  25.      files  differ.   Lines may not be longer than 128 characters.  If the two
  26.      arguments on the command line  are  both  directories,  diff  recursively
  27.      steps  through  all subdirectories comparing files of the same name. If a
  28.      file name is found only in one directory, a diagnostic message is written
  29.      to  stdout.  A file that is of either block special, character special or
  30.      FIFO special type, cannot be compared to any other file.   On  the  other
  31.      hand,  if  there is one directory and one file given on the command line,
  32.      diff tries to compare the  file  with  the  same  name  as  file  in  the
  33.      directory directory.
  34.                                                                              1
  35. DIFF(1)                   Minix Programmer's Manual                    DIFF(1)
  36. SEE ALSO
  37.      cdiff(1), cmp(1), comm(1), patch(1).
  38.                                                                              2