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

操作系统开发

开发平台:

C/C++

  1. LN(1)                     Minix Programmer's Manual                      LN(1)
  2. NAME
  3.      ln, clone - create a link to a file
  4. SYNOPSIS
  5.      ln [-ifmrRvx] file [name]
  6.      ln [-ifrRvx] file ... dir
  7.      clone [-ifmvx] file [name]
  8. OPTIONS
  9.      -i   Ask if ok to remove a file
  10.      -f   Remove existing links
  11.      -m   Merge trees, disable the into-a-directory trick
  12.      -rR  Recursively link a directory tree
  13.      -v   Display what ln is doing
  14.      -x   Do not cross device boundaries
  15. EXAMPLES
  16.      ln file newname     # Make newname a synonym for file
  17.      ln /usr/games/chess # Create a link called chess
  18. DESCRIPTION
  19.      A directory entry is created for name  .  The  entry  points  to  file  .
  20.      Henceforth,  name  and  file can be used interchangeably.  If name is not
  21.      supplied, the last component of file is used as the link name.   If  more
  22.      than  one  file  is supplied or the name refers to an existing directory,
  23.      links will be created in that directory.  An existing name  will  not  be
  24.      removed unless the -i or -f flag is specified.
  25.      Clone is a convenient synonym for ln -fmr to  create  a  so-called  "link
  26.      farm", a directory full of links to the original tree.
  27. SEE ALSO
  28.      cp(1), link(2), unlink(2).
  29.                                                                              1