2 .\" Copyright (c) 1980, 1990, 1993
3 .\" The Regents of the University of California. All rights reserved.
5 .\" This code is derived from software contributed to Berkeley by
6 .\" the Institute of Electrical and Electronics Engineers, Inc.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
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 .\" 3. 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.
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
32 .\" @(#)ln.1 8.2 (Berkeley) 12/30/93
33 .\" $FreeBSD: head/bin/ln/ln.1 244791 2012-12-28 22:06:33Z gjb $
44 .Op Fl L | Fl P | Fl s Op Fl F
50 .Op Fl L | Fl P | Fl s Op Fl F
56 .Ar source_file Ar target_file
60 utility creates a new directory entry (linked file) for the file name
65 will be created with the same file modes as the
67 It is useful for maintaining multiple copies of a file in many places
68 at once without using up storage for the
73 There are two types of links; hard links and symbolic links.
76 to a file is one of the differences between a hard and symbolic link.
78 The options are as follows:
81 If the target file already exists and is a directory, then remove it
82 so that the link may occur.
85 option should be used with either
95 option is a no-op unless
99 When creating a hard link to a symbolic link,
100 create a hard link to the target of the symbolic link.
102 This option cancels the
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
112 If the target file already exists,
113 then unlink it so that the link may occur.
116 option overrides any previous
126 is a symbolic link, do not follow it.
127 This is most useful with the
129 option, to replace a symlink which may point to a directory.
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
138 then unlink the target file so that the link may occur.
139 Otherwise, do not attempt the link.
142 option overrides any previous
148 for compatibility with other
152 Create a symbolic link.
156 to be verbose, showing files as they are processed.
158 Warn if the source of a symbolic link does not currently exist.
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
169 Directories may not be hardlinked, and hard links may not span file systems.
171 A symbolic link contains the name of the file to
173 The referenced file is used when an
175 operation is performed on the link.
178 on a symbolic link will return the linked-to file; an
180 must be done to obtain information about the link.
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.
186 Given one or two arguments,
188 creates a link to an existing file
192 is given, the link has that name;
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
200 Given more than two arguments,
204 to all the named source files.
205 The links made will have the same name as the files being linked to.
207 When the utility is called as
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,
214 operation using the two passed arguments.
217 supports a special kind of dynamic
218 symbolic link called a
219 .Em variant symlink .
222 of a variant symlink may contain one or more variable names.
223 Each of these variable names is enclosed in braces and preceded by a
224 dollar sign in the style of variable references in
229 Whenever a variant symlink is followed, each variable found in
231 is replaced by its associated value.
232 In this manner, a variant symlink may resolve to different
233 paths based on context.
234 The facility supports per-process, per-user, and system-wide varsyms.
236 Varsym variables can be set with the
241 environment variables are not used to resolve variant symlinks.
243 Create a symbolic link named
248 .Dl # ln -s /usr/src /home/src
251 .Pa /usr/local/bin/fooprog
253 .Pa /usr/local/bin/fooprog-1.0 :
255 .Dl # ln /usr/local/bin/fooprog-1.0 /usr/local/bin/fooprog
257 As an exercise, try the following commands:
258 .Bd -literal -offset indent
265 Note that both files have the same inode; that is,
267 is essentially an alias for the
270 This hard link exists so
272 may be invoked from shell scripts, for example, using the
276 In the next example, the second call to
280 and creates a replacement pointing to
282 .Bd -literal -offset indent
290 option, this would instead leave
299 This results from directory-walking.
301 An easy rule to remember is that the argument order for
305 The first argument needs to exist, the second one is created.
307 A simple variable symlink example:
308 .Bd -literal -offset indent
309 sysctl vfs.varsym_enable=1
311 ln -s 'a${fubar}b' test
314 echo 'Goodbye' > ayyb
316 varsym fubar=xx; cat test
317 varsym fubar=yy; cat test
327 options are non-standard and their use in scripts is not recommended.
328 They are provided solely for compatibility with other
332 Variant symlinks are unique (among BSDs) to
339 extension and should not be used in portable scripts.