]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - bin/ln/ln.1
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / bin / ln / ln.1
1 .\"-
2 .\" Copyright (c) 1980, 1990, 1993
3 .\"     The Regents of the University of California.  All rights reserved.
4 .\"
5 .\" This code is derived from software contributed to Berkeley by
6 .\" the Institute of Electrical and Electronics Engineers, Inc.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)ln.1        8.2 (Berkeley) 12/30/93
33 .\" $FreeBSD$
34 .\"
35 .Dd July 17, 2009
36 .Dt LN 1
37 .Os
38 .Sh NAME
39 .Nm ln ,
40 .Nm link
41 .Nd link files
42 .Sh SYNOPSIS
43 .Nm
44 .Op Fl L | Fl P | Fl s Op Fl F
45 .Op Fl f | iw
46 .Op Fl hnv
47 .Ar source_file
48 .Op Ar target_file
49 .Nm
50 .Op Fl L | Fl P | Fl s Op Fl F
51 .Op Fl f | iw
52 .Op Fl hnv
53 .Ar source_file ...
54 .Ar target_dir
55 .Nm link
56 .Ar source_file Ar target_file
57 .Sh DESCRIPTION
58 The
59 .Nm
60 utility creates a new directory entry (linked file) for the file name
61 specified by
62 .Ar target_file .
63 The
64 .Ar target_file
65 will be created with the same file modes as the
66 .Ar source_file .
67 It is useful for maintaining multiple copies of a file in many places
68 at once without using up storage for the
69 .Dq copies ;
70 instead, a link
71 .Dq points
72 to the original copy.
73 There are two types of links; hard links and symbolic links.
74 How a link
75 .Dq points
76 to a file is one of the differences between a hard and symbolic link.
77 .Pp
78 The options are as follows:
79 .Bl -tag -width flag
80 .It Fl F
81 If the target file already exists and is a directory, then remove it
82 so that the link may occur.
83 The
84 .Fl F
85 option should be used with either
86 .Fl f
87 or
88 .Fl i
89 options.
90 If none is specified,
91 .Fl f
92 is implied.
93 The
94 .Fl F
95 option is a no-op unless
96 .Fl s
97 option is specified.
98 .It Fl L
99 When creating a hard link to a symbolic link,
100 create a hard link to the target of the symbolic link.
101 This is the default.
102 This option cancels the
103 .Fl P
104 option.
105 .It Fl P
106 When creating a hard link to a symbolic link,
107 create a hard link to the symbolic link itself.
108 This option cancels the
109 .Fl L
110 option.
111 .It Fl f
112 If the target file already exists,
113 then unlink it so that the link may occur.
114 (The
115 .Fl f
116 option overrides any previous
117 .Fl i
118 and
119 .Fl w
120 options.)
121 .It Fl h
122 If the
123 .Ar target_file
124 or
125 .Ar target_dir
126 is a symbolic link, do not follow it.
127 This is most useful with the
128 .Fl f
129 option, to replace a symlink which may point to a directory.
130 .It Fl i
131 Cause
132 .Nm
133 to write a prompt to standard error if the target file exists.
134 If the response from the standard input begins with the character
135 .Sq Li y
136 or
137 .Sq Li Y ,
138 then unlink the target file so that the link may occur.
139 Otherwise, do not attempt the link.
140 (The
141 .Fl i
142 option overrides any previous
143 .Fl f
144 options.)
145 .It Fl n
146 Same as
147 .Fl h ,
148 for compatibility with other
149 .Nm
150 implementations.
151 .It Fl s
152 Create a symbolic link.
153 .It Fl v
154 Cause
155 .Nm
156 to be verbose, showing files as they are processed.
157 .It Fl w
158 Warn if the source of a symbolic link does not currently exist.
159 .El
160 .Pp
161 By default,
162 .Nm
163 makes
164 .Em hard
165 links.
166 A hard link to a file is indistinguishable from the original directory entry;
167 any changes to a file are effectively independent of the name used to reference
168 the file.
169 Directories may not be hardlinked, and hard links may not span file systems.
170 .Pp
171 A symbolic link contains the name of the file to
172 which it is linked.
173 The referenced file is used when an
174 .Xr open 2
175 operation is performed on the link.
176 A
177 .Xr stat 2
178 on a symbolic link will return the linked-to file; an
179 .Xr lstat 2
180 must be done to obtain information about the link.
181 The
182 .Xr readlink 2
183 call may be used to read the contents of a symbolic link.
184 Symbolic links may span file systems and may refer to directories.
185 .Pp
186 Given one or two arguments,
187 .Nm
188 creates a link to an existing file
189 .Ar source_file .
190 If
191 .Ar target_file
192 is given, the link has that name;
193 .Ar target_file
194 may also be a directory in which to place the link;
195 otherwise it is placed in the current directory.
196 If only the directory is specified, the link will be made
197 to the last component of
198 .Ar source_file .
199 .Pp
200 Given more than two arguments,
201 .Nm
202 makes links in
203 .Ar target_dir
204 to all the named source files.
205 The links made will have the same name as the files being linked to.
206 .Pp
207 When the utility is called as
208 .Nm link ,
209 exactly two arguments must be supplied,
210 neither of which may specify a directory.
211 No options may be supplied in this simple mode of operation,
212 which performs a
213 .Xr link 2
214 operation using the two passed arguments.
215 .Sh COMPATIBILITY
216 The
217 .Fl h ,
218 .Fl i ,
219 .Fl n ,
220 .Fl v
221 and
222 .Fl w
223 options are non-standard and their use in scripts is not recommended.
224 They are provided solely for compatibility with other
225 .Nm
226 implementations.
227 .Pp
228 The
229 .Fl F
230 option is a
231 .Fx
232 extension and should not be used in portable scripts.
233 .Sh SEE ALSO
234 .Xr link 2 ,
235 .Xr lstat 2 ,
236 .Xr readlink 2 ,
237 .Xr stat 2 ,
238 .Xr symlink 2 ,
239 .Xr symlink 7
240 .Sh STANDARDS
241 The
242 .Nm
243 utility conforms to
244 .St -p1003.2-92 .
245 .Pp
246 The simplified
247 .Nm link
248 command conforms to
249 .St -susv2 .
250 .Sh HISTORY
251 An
252 .Nm
253 command appeared in
254 .At v1 .