morpheus-base

morpheus base system
git clone git://git.2f30.org/morpheus-base
Log | Files | Refs

ln.1 (696B)


      1 .TH LN 1 sbase\-VERSION
      2 .SH NAME
      3 ln \- make links between files
      4 .SH SYNOPSIS
      5 .B ln
      6 .RB [ \-LPfs ]
      7 .I file
      8 .RI [ name ]
      9 .P
     10 .B ln
     11 .RB [ \-LPfs ]
     12 .RI [ file ...]
     13 .RI [ directory ]
     14 .SH DESCRIPTION
     15 .B ln
     16 creates a hard link to a given file, with the given name.  If no name is given
     17 it is linked into the current directory.  If multiple files are listed they will
     18 be linked into the given directory.
     19 .SH OPTIONS
     20 .TP
     21 .B \-L
     22 create links to the files referenced by symbolic link source files (default
     23 behavior).
     24 .TP
     25 .B \-P
     26 create links to symbolic link source files themselves.
     27 .TP
     28 .B \-f
     29 remove existing destinations.
     30 .TP
     31 .B \-s
     32 create a symlink.
     33 .SH SEE ALSO
     34 .IR cp (1),
     35 .IR link (2),
     36 .IR symlink (2)