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

操作系统开发

开发平台:

C/C++

  1. CP(1)                     Minix Programmer's Manual                      CP(1)
  2. NAME
  3.      cp, cpdir - file copy
  4. SYNOPSIS
  5.      cp [-pifsmrRvx] file1 file2
  6.      cp [-pifsrRvx] file ... directory
  7.      cpdir [-ifvx] file1 file2
  8. OPTIONS
  9.      -p   Preserve full mode, uid, gid and times
  10.      -i   Ask before removing existing file
  11.      -f   Forced remove existing file
  12.      -s   Make similar, copy some attributes
  13.      -m   Merge trees, disable the into-a-directory trick
  14.      -r   Copy directory trees with link structure, etc. intact
  15.      -R   Copy directory trees and treat special files as ordinary
  16.      -v   Display what cp is doing
  17.      -x   Do not cross device boundaries
  18. EXAMPLES
  19.      cp oldfile newfile  # Copy oldfile to newfile
  20.      cp -R dir1 dir2     # Copy a directory tree
  21. DESCRIPTION
  22.      Cp copies one file  to  another,  or  copies  one  or  more  files  to  a
  23.      directory.   Special  files  are  normally  opened and read, unless -r is
  24.      used.  -r also copies the  link  structure,  something  -R  doesn't  care
  25.      about.   The  -s  option differs from -p that it only copies the times if
  26.      the target file already exists.  A normal copy only copies  the  mode  of
  27.      the  file, with the file creation mask applied.  Set-uid bits are cleared
  28.      if the owner cannot be set.  (The -s  flag  does  not  patronize  you  by
  29.      clearing bits.  Alas -s and -r are nonstandard.)
  30.      Cpdir is a convenient synonym for cp -psmr to make a precise  copy  of  a
  31.      directory tree.
  32.                                                                              1
  33. CP(1)                     Minix Programmer's Manual                      CP(1)
  34. SEE ALSO
  35.      cat(1), mkdir(1), rmdir(1), ln(1), rm(1).
  36.                                                                              2