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

操作系统开发

开发平台:

C/C++

  1. .TH CP 1
  2. .SH NAME
  3. cp, cpdir - file copy
  4. .SH SYNOPSIS
  5. fBcp [fB-pifsmrRvxfR] fIfile1fR fIfile2fRfR
  6. .br
  7. fBcp [fB-pifsrRvxfR] fIfilefR ... fIdirectoryfRfR
  8. .br
  9. fBcpdir [fB-ifvxfR] fIfile1fR fIfile2fRfR
  10. .br
  11. .de FL
  12. .TP
  13. \fB\$1\fR
  14. \$2
  15. ..
  16. .de EX
  17. .TP 20
  18. \fB\$1\fR
  19. # \$2
  20. ..
  21. .SH OPTIONS
  22. .FL "-p" "Preserve full mode, uid, gid and times"
  23. .FL "-i" "Ask before removing existing file"
  24. .FL "-f" "Forced remove existing file"
  25. .FL "-s" "Make similar, copy some attributes"
  26. .FL "-m" "Merge trees, disable the into-a-directory trick"
  27. .FL "-r" "Copy directory trees with link structure, etc. intact"
  28. .FL "-R" "Copy directory trees and treat special files as ordinary"
  29. .FL "-v" "Display what cp is doing"
  30. .FL "-x" "Do not cross device boundaries"
  31. .SH EXAMPLES
  32. .EX "cp oldfile newfile" "Copy fIoldfilefR to fInewfilefR"
  33. .EX "cp -R dir1 dir2" "Copy a directory tree"
  34. .SH DESCRIPTION
  35. .PP
  36. .I Cp
  37. copies one file to another, or copies one or more files to a directory.
  38. Special files are normally opened and read, unless fB-rfP is used.
  39. fB-rfP also copies the link structure, something fB-RfP doesn't
  40. care about.
  41. The fB-sfP option differs from fB-pfP that it only copies the
  42. times if the target file already exists.  A normal copy only copies the
  43. mode of the file, with the file creation mask applied.  Set-uid bits are
  44. cleared if the owner cannot be set.  (The fB-sfP flag does not
  45. patronize you by clearing bits.  Alas fB-sfP and fB-rfP are
  46. nonstandard.)
  47. .PP
  48. .I Cpdir
  49. is a convenient synonym for fBcp -psmrfP to make a precise copy of
  50. a directory tree.
  51. .SH "SEE ALSO"
  52. .BR cat (1),
  53. .BR mkdir (1),
  54. .BR rmdir (1),
  55. .BR ln (1),
  56. .BR rm (1).