]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - bin/cp/cp.1
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / bin / cp / cp.1
1 .\"-
2 .\" Copyright (c) 1989, 1990, 1993, 1994
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 .\"     @(#)cp.1        8.3 (Berkeley) 4/18/94
33 .\" $FreeBSD$
34 .\"
35 .Dd October 27, 2006
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 | n
48 .Op Fl alpv
49 .Ar source_file target_file
50 .Nm
51 .Oo
52 .Fl R
53 .Op Fl H | Fl L | Fl P
54 .Oc
55 .Op Fl f | i | n
56 .Op Fl alpv
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.
71 If
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 H
78 If the
79 .Fl R
80 option is specified, symbolic links on the command line are followed.
81 (Symbolic links encountered in the tree traversal are not followed.)
82 .It Fl L
83 If the
84 .Fl R
85 option is specified, all symbolic links are followed.
86 .It Fl P
87 If the
88 .Fl R
89 option is specified, no symbolic links are followed.
90 This is the default.
91 .It Fl R
92 If
93 .Ar source_file
94 designates a directory,
95 .Nm
96 copies the directory and the entire subtree connected at that point.
97 If the
98 .Ar source_file
99 ends in a
100 .Pa / ,
101 the contents of the directory are copied rather than the
102 directory itself.
103 This option also causes symbolic links to be copied, rather than
104 indirected through, and for
105 .Nm
106 to create special files rather than copying them as normal files.
107 Created directories have the same mode as the corresponding source
108 directory, unmodified by the process' umask.
109 .Pp
110 Note that
111 .Nm
112 copies hard linked files as separate files.
113 If you need to preserve hard links, consider using
114 .Xr tar 1 ,
115 .Xr cpio 1 ,
116 or
117 .Xr pax 1
118 instead.
119 .It Fl a
120 Archive mode.
121 Same as
122 .Fl RpP .
123 .It Fl f
124 For each existing destination pathname, remove it and
125 create a new file, without prompting for confirmation
126 regardless of its permissions.
127 (The
128 .Fl f
129 option overrides any previous
130 .Fl i
131 or
132 .Fl n
133 options.)
134 .It Fl i
135 Cause
136 .Nm
137 to write a prompt to the standard error output before copying a file
138 that would overwrite an existing file.
139 If the response from the standard input begins with the character
140 .Sq Li y
141 or
142 .Sq Li Y ,
143 the file copy is attempted.
144 (The
145 .Fl i
146 option overrides any previous
147 .Fl f
148 or
149 .Fl n
150 options.)
151 .It Fl l
152 Create hard links to regular files in a hierarchy instead of copying.
153 .It Fl n
154 Do not overwrite an existing file.
155 (The
156 .Fl n
157 option overrides any previous
158 .Fl f
159 or
160 .Fl i
161 options.)
162 .It Fl p
163 Cause
164 .Nm
165 to preserve the following attributes of each source
166 file in the copy: modification time, access time,
167 file flags, file mode, user ID, and group ID, as allowed by permissions.
168 .Pp
169 If the user ID and group ID cannot be preserved, no error message
170 is displayed and the exit value is not altered.
171 .Pp
172 If the source file has its set-user-ID bit on and the user ID cannot
173 be preserved, the set-user-ID bit is not preserved
174 in the copy's permissions.
175 If the source file has its set-group-ID bit on and the group ID cannot
176 be preserved, the set-group-ID bit is not preserved
177 in the copy's permissions.
178 If the source file has both its set-user-ID and set-group-ID bits on,
179 and either the user ID or group ID cannot be preserved, neither
180 the set-user-ID nor set-group-ID bits are preserved in the copy's
181 permissions.
182 .It Fl v
183 Cause
184 .Nm
185 to be verbose, showing files as they are copied.
186 .El
187 .Pp
188 For each destination file that already exists, its contents are
189 overwritten if permissions allow.
190 Its mode, user ID, and group
191 ID are unchanged unless the
192 .Fl p
193 option was specified.
194 .Pp
195 In the second synopsis form,
196 .Ar target_directory
197 must exist unless there is only one named
198 .Ar source_file
199 which is a directory and the
200 .Fl R
201 flag is specified.
202 .Pp
203 If the destination file does not exist, the mode of the source file is
204 used as modified by the file mode creation mask
205 .Pf ( Ic umask ,
206 see
207 .Xr csh 1 ) .
208 If the source file has its set-user-ID bit on, that bit is removed
209 unless both the source file and the destination file are owned by the
210 same user.
211 If the source file has its set-group-ID bit on, that bit is removed
212 unless both the source file and the destination file are in the same
213 group and the user is a member of that group.
214 If both the set-user-ID and set-group-ID bits are set, all of the above
215 conditions must be fulfilled or both bits are removed.
216 .Pp
217 Appropriate permissions are required for file creation or overwriting.
218 .Pp
219 Symbolic links are always followed unless the
220 .Fl R
221 flag is set, in which case symbolic links are not followed, by default.
222 The
223 .Fl H
224 or
225 .Fl L
226 flags (in conjunction with the
227 .Fl R
228 flag) cause symbolic links to be followed as described above.
229 The
230 .Fl H ,
231 .Fl L
232 and
233 .Fl P
234 options are ignored unless the
235 .Fl R
236 option is specified.
237 In addition, these options override each other and the
238 command's actions are determined by the last one specified.
239 .Pp
240 If
241 .Nm
242 receives a
243 .Dv SIGINFO
244 (see the
245 .Cm status
246 argument for
247 .Xr stty 1 )
248 signal, the current input and output file and the percentage complete
249 will be written to the standard output.
250 .Sh EXIT STATUS
251 .Ex -std
252 .Sh COMPATIBILITY
253 Historic versions of the
254 .Nm
255 utility had a
256 .Fl r
257 option.
258 This implementation supports that option, however, its behavior
259 is different from historical
260 .Fx
261 behavior.
262 Use of this option
263 is strongly discouraged as the behavior is
264 implementation-dependent.
265 In
266 .Fx ,
267 .Fl r
268 is a synonym for
269 .Fl RL
270 and works the same unless modified by other flags.
271 Historical implementations
272 of
273 .Fl r
274 differ as they copy special files as normal
275 files while recreating a hierarchy.
276 .Pp
277 The
278 .Fl v
279 and
280 .Fl n
281 options are non-standard and their use in scripts is not recommended.
282 .Sh SEE ALSO
283 .Xr mv 1 ,
284 .Xr rcp 1 ,
285 .Xr umask 2 ,
286 .Xr fts 3 ,
287 .Xr symlink 7
288 .Sh STANDARDS
289 The
290 .Nm
291 command is expected to be
292 .St -p1003.2
293 compatible.
294 .Sh HISTORY
295 A
296 .Nm
297 command appeared in
298 .At v1 .