Hook up ascii.tmac for the tool build as well.
[netbsd-mini2440.git] / bin / cp / cp.1
blobfc49a53bbc919ccdb40458b5424f61205ce7b906
1 .\"     $NetBSD: cp.1,v 1.29 2006/07/16 16:22:24 jschauma Exp $
2 .\"
3 .\" Copyright (c) 1989, 1990, 1993, 1994
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to Berkeley by
7 .\" the Institute of Electrical and Electronics Engineers, Inc.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\" 3. Neither the name of the University nor the names of its contributors
18 .\"    may be used to endorse or promote products derived from this software
19 .\"    without specific prior written permission.
20 .\"
21 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 .\" SUCH DAMAGE.
32 .\"
33 .\"     @(#)cp.1        8.3 (Berkeley) 4/18/94
34 .\"
35 .Dd August 15, 2005
36 .Dt CP 1
37 .Os
38 .Sh NAME
39 .Nm cp
40 .Nd copy files
41 .Sh SYNOPSIS
42 .Nm
43 .Oo
44 .Fl R
45 .Op Fl H | Fl L | Fl P
46 .Oc
47 .Op Fl f | i
48 .Op Fl Npv
49 .Ar source_file target_file
50 .Nm cp
51 .Oo
52 .Fl R
53 .Op Fl H | Fl L | Fl P
54 .Oc
55 .Op Fl f | i
56 .Op Fl Npv
57 .Ar source_file ... target_directory
58 .Sh DESCRIPTION
59 In the first synopsis form, the
60 .Nm
61 utility copies the contents of the
62 .Ar source_file
63 to the
64 .Ar target_file .
65 In the second synopsis form,
66 the contents of each named
67 .Ar source_file
68 is copied to the destination
69 .Ar target_directory .
70 The names of the files themselves are not changed.
72 .Nm
73 detects an attempt to copy a file to itself, the copy will fail.
74 .Pp
75 The following options are available:
76 .Bl -tag -width flag
77 .It Fl f
78 For each existing destination pathname, attempt to overwrite it.
79 If permissions do not allow copy to succeed, remove it and create a new
80 file, without prompting for confirmation.
81 (The
82 .Fl i
83 option is ignored if the
84 .Fl f
85 option is specified.)
86 .It Fl H
87 If the
88 .Fl R
89 option is specified, symbolic links on the command line are followed.
90 (Symbolic links encountered in the tree traversal are not followed.)
91 .It Fl i
92 Causes
93 .Nm
94 to write a prompt to the standard error output before copying a file
95 that would overwrite an existing file.
96 If the response from the standard input begins with the character
97 .Sq Li y ,
98 the file copy is attempted.
99 .It Fl L
100 If the
101 .Fl R
102 option is specified, all symbolic links are followed.
103 .It Fl N
104 When used with
105 .Fl p ,
106 don't copy file flags.
107 .It Fl P
108 No symbolic links are followed.
109 .It Fl p
110 Causes
112 to preserve in the copy as many of the modification time, access time,
113 file flags, file mode, user ID, and group ID as allowed by permissions.
115 If the user ID and group ID cannot be preserved, no error message
116 is displayed and the exit value is not altered.
118 If the source file has its set user ID bit on and the user ID cannot
119 be preserved, the set user ID bit is not preserved
120 in the copy's permissions.
121 If the source file has its set group ID bit on and the group ID cannot
122 be preserved, the set group ID bit is not preserved
123 in the copy's permissions.
124 If the source file has both its set user ID and set group ID bits on,
125 and either the user ID or group ID cannot be preserved, neither
126 the set user ID or set group ID bits are preserved in the copy's
127 permissions.
128 .It Fl R
130 .Ar source_file
131 designates a directory,
133 copies the directory and the entire subtree connected at that point.
134 This option also causes symbolic links to be copied, rather than
135 indirected through, and for
137 to create special files rather than copying them as normal files.
138 Created directories have the same mode as the corresponding source
139 directory, unmodified by the process's umask.
140 .It Fl v
141 Cause
143 to be verbose, showing files as they are copied.
146 For each destination file that already exists, its contents are
147 overwritten if permissions allow, but its mode, user ID, and group
148 ID are unchanged.
150 In the second synopsis form,
151 .Ar target_directory
152 must exist unless there is only one named
153 .Ar source_file
154 which is a directory and the
155 .Fl R
156 flag is specified.
158 If the destination file does not exist, the mode of the source file is
159 used as modified by the file mode creation mask
160 .Ic ( umask ,
162 .Xr csh 1 ) .
163 If the source file has its set user ID bit on, that bit is removed
164 unless both the source file and the destination file are owned by the
165 same user.
166 If the source file has its set group ID bit on, that bit is removed
167 unless both the source file and the destination file are in the same
168 group and the user is a member of that group.
169 If both the set user ID and set group ID bits are set, all of the above
170 conditions must be fulfilled or both bits are removed.
172 Appropriate permissions are required for file creation or overwriting.
174 Symbolic links are always followed unless the
175 .Fl R
176 flag is set, in which case symbolic links are not followed, by default.
178 .Fl H
180 .Fl L
181 flags (in conjunction with the
182 .Fl R
183 flag), as well as the
184 .Fl P
185 flag cause symbolic links to be followed as described above.
187 .Fl H
189 .Fl L
190 options are ignored unless the
191 .Fl R
192 option is specified.
193 In addition, these options override each other and the
194 command's actions are determined by the last one specified.
195 .Sh EXIT STATUS
196 .Ex -std cp
197 .Sh COMPATIBILITY
198 Historic versions of the
200 utility had a
201 .Fl r
202 option.
203 This implementation supports that option, however, its use is strongly
204 discouraged, as it does not correctly copy special files, symbolic links
205 or fifo's.
206 .Sh SEE ALSO
207 .Xr mv 1 ,
208 .Xr rcp 1 ,
209 .Xr umask 2 ,
210 .Xr fts 3 ,
211 .Xr symlink 7
212 .Sh STANDARDS
215 utility is expected to be
216 .St -p1003.2
217 compatible.
220 .Fl v
221 option is an extension to
222 .St -p1003.2 .