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

操作系统开发

开发平台:

WINDOWS

  1. TREECMP(1)                Minix Programmer's Manual                 TREECMP(1)
  2. NAME
  3.      treecmp - recursively list differences in two directory trees
  4. SYNOPSIS
  5.      treecmp [-cv] olddir newdir
  6. OPTIONS
  7.      -c   (changes) list the names of changed or new files
  8.      -v   (verbose) list all directories processed
  9. EXAMPLES
  10.      treecmp -v /usr/ast/V1 /usr/ast/V2
  11.                          # Compare two trees
  12. DESCRIPTION
  13.      Treecmp recursively descends the directory tree of  its  second  argument
  14.      and  compares  all  files  to  those at the corresponding position in the
  15.      first  argument.  If  the  two  trees  are  identical,  i.e.,   all   the
  16.      corresponding  directories  and  files  are the same, there is no output.
  17.      Otherwise, a list of files missing from one of the trees  or  present  in
  18.      both  but whose contents are not identical in both are printed.  When the
  19.      -c flag is given, only files that are changed from the old version or are
  20.      new (i.e., absent in the old version) are listed.
  21.                                                                              1