Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / doc / man-pages / pod1 / symlink_make.pod
CommitLineData
805e021f
CE
1=head1 NAME
2
3symlink_make - Create a symbolic link [Windows only]
4
5=head1 SYNOPSIS
6
7=for html
8<div class="synopsis">
9
10B<symlink make> S<<< [B<-name>] <I<file name>> >>>
11 S<<< [B<-to>] <I<file name>> >>> [B<-help>]
12
13=for html
14</div>
15
16=head1 DESCRIPTION
17
18The B<symlink make> command creates a new symbolic link to a file. The file
19to which the link points does not have to exist when the link is created.
20
21=head1 CAUTIONS
22
23The B<symlink> commands are only available on Windows platforms. On other
24platforms, use the C<ln -s> command.
25
26=head1 OPTIONS
27
28=over 4
29
30=item [B<-name>] <I<file name>>
31
32Specify the name of the new link. B<-name> is optional, but the file name
33is not.
34
35=item [B<-to>] <I<file name>>
36
37Specify the file to which the new link points. B<-to> is optional, but the
38file name is not.
39
40=item B<-help>
41
42Prints the online help for this command. All other valid options are
43ignored.
44
45=back
46
47=head1 OUTPUT
48
49Prints the online help for this command. All other valid options are
50ignored.
51
52=head1 EXAMPLES
53
54In order to create a link named C<mylink> pointing to the file C<myfile>,
55use one of the following commands:
56
57 % symlink make -name mylink -to myfile
58 % symlink make mylink myfile
59
60=head1 PRIVILEGE REQUIRED
61
62The issuer must have the C<l> (look) and C<i> (insert) permissions on the
63ACL of the directory that houses the symlink.
64
65=head1 SEE ALSO
66
67L<symlink(1)>,
68L<symlink_list(1)>,
69L<symlink_remove(1)>
70
71=head1 COPYRIGHT
72
73Copyright 2007 Jason Edgecombe <jason@rampaginggeek.com>
74
75This documentation is covered by the BSD License as written in the
76doc/LICENSE file. This man page was written by Jason Edgecombe for
77OpenAFS.