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

操作系统开发

开发平台:

C/C++

  1. .TH LN 1
  2. .SH NAME
  3. ln, clone - create a link to a file
  4. .SH SYNOPSIS
  5. fBln [fB-ifmrRvxfR] fIfilefR [fInamefR]fR
  6. .br
  7. fBln [fB-ifrRvxfR] fIfilefR ... fIdirfRfR
  8. .br
  9. fBclone [fB-ifmvxfR] fIfilefR [fInamefR]fR
  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 "-i" "Ask if ok to remove a file"
  23. .FL "-f" "Remove existing links"
  24. .FL "-m" "Merge trees, disable the into-a-directory trick"
  25. .FL "-rR" "Recursively link a directory tree"
  26. .FL "-v" "Display what ln is doing"
  27. .FL "-x" "Do not cross device boundaries"
  28. .SH EXAMPLES
  29. .EX "ln file newname" "Make fInewnamefP a synonym for fIfilefP"
  30. .EX "ln /usr/games/chess" "Create a link called fIchessfP"
  31. .SH DESCRIPTION
  32. .PP
  33. A directory entry is created for
  34. .I name .
  35. The entry points to
  36. .I file .
  37. Henceforth,
  38. .I name
  39. and
  40. .I file
  41. can be used interchangeably.
  42. If
  43. .I name
  44. is not supplied, the last component of
  45. .I file
  46. is used as the link name.
  47. If more than one
  48. .I file
  49. is supplied or the
  50. .I name
  51. refers to an existing directory, links will be created in that directory.
  52. An existing
  53. .I name
  54. will not be removed unless the fB-ifR or fB-ffR flag is specified.
  55. .PP
  56. .I Clone
  57. is a convenient synonym for fBln -fmrfP to create a so-called "link farm",
  58. a directory full of links to the original tree.
  59. .SH "SEE ALSO"
  60. .BR cp (1),
  61. .BR link (2),
  62. .BR unlink (2).