2 .\" Copyright (c) 1989, 1990, 1993, 1994
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 .\" 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.
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 .\" @(#)cp.1 8.3 (Berkeley) 4/18/94
33 .\" $FreeBSD: src/bin/cp/cp.1,v 1.33 2005/02/25 00:40:46 trhodes Exp $
45 .Op Fl H | Fl L | Fl P
49 .Ar source_file target_file
53 .Op Fl H | Fl L | Fl P
57 .Ar source_file ... target_directory
59 In the first synopsis form, the
61 utility copies the contents of the
65 In the second synopsis form,
66 the contents of each named
68 is copied to the destination
69 .Ar target_directory .
70 The names of the files themselves are not changed.
73 detects an attempt to copy a file to itself, the copy will fail.
75 The following options are available:
80 options. Preserves structure and attributes of files
81 but not directory structure.
83 .\"For each existing destination pathname, remove it and
84 If the destination file cannot be opened, remove it and
85 create a new file, without prompting for confirmation
86 regardless of its permissions.
89 option overrides any previous
93 The target file is not unlinked before the copy.
94 Thus, any existing access rights will be retained.
98 option is specified, symbolic links on the command line are followed.
99 (Symbolic links encountered in the tree traversal are not followed.)
103 to write a prompt to the standard error output before copying a file
104 that would overwrite an existing file.
105 If the response from the standard input begins with the character
109 the file copy is attempted.
112 option overrides any previous
118 option is specified, all symbolic links are followed.
120 Do not overwrite an existing file.
123 option overrides any previous
131 option is specified, no symbolic links are followed.
136 to preserve the following attributes of each source
137 file in the copy: modification time, access time,
138 file flags, file mode, user ID, and group ID, as allowed by permissions.
139 Access Control Lists (ACLs) and Extended Attributes (EAs),
140 including resource forks, will also be preserved.
142 If the user ID and group ID cannot be preserved, no error message
143 is displayed and the exit value is not altered.
145 If the source file has its set-user-ID bit on and the user ID cannot
146 be preserved, the set-user-ID bit is not preserved
147 in the copy's permissions.
148 If the source file has its set-group-ID bit on and the group ID cannot
149 be preserved, the set-group-ID bit is not preserved
150 in the copy's permissions.
151 If the source file has both its set-user-ID and set-group-ID bits on,
152 and either the user ID or group ID cannot be preserved, neither
153 the set-user-ID nor set-group-ID bits are preserved in the copy's
158 designates a directory,
160 copies the directory and the entire subtree connected at that point.
165 the contents of the directory are copied rather than the
167 This option also causes symbolic links to be copied, rather than
168 indirected through, and for
170 to create special files rather than copying them as normal files.
171 Created directories have the same mode as the corresponding source
172 directory, unmodified by the process' umask.
178 will continue copying even if errors are detected.
182 copies hard-linked files as separate files.
183 If you need to preserve hard links, consider using
192 to be verbose, showing files as they are copied.
194 Do not copy Extended Attributes (EAs) or resource forks.
197 For each destination file that already exists, its contents are
198 overwritten if permissions allow.
199 Its mode, user ID, and group
200 ID are unchanged unless the
202 option was specified.
204 In the second synopsis form,
206 must exist unless there is only one named
208 which is a directory and the
212 If the destination file does not exist, the mode of the source file is
213 used as modified by the file mode creation mask
217 If the source file has its set-user-ID bit on, that bit is removed
218 unless both the source file and the destination file are owned by the
220 If the source file has its set-group-ID bit on, that bit is removed
221 unless both the source file and the destination file are in the same
222 group and the user is a member of that group.
223 If both the set-user-ID and set-group-ID bits are set, all of the above
224 conditions must be fulfilled or both bits are removed.
226 Appropriate permissions are required for file creation or overwriting.
228 Symbolic links are always followed unless the
230 flag is set, in which case symbolic links are not followed, by default.
235 flags (in conjunction with the
237 flag) cause symbolic links to be followed as described above.
243 options are ignored unless the
246 In addition, these options override each other and the
247 command's actions are determined by the last one specified.
257 signal, the current input and output file and the percentage complete
258 will be written to the standard output.
262 Historic versions of the
267 This implementation supports that option;
268 however, its use is strongly discouraged,
269 as it does not correctly copy special files, symbolic links, or fifo's.
275 options are non-standard and their use in scripts is not recommended.
276 .Sh LEGACY DESCRIPTION
283 option, the target file is always unlinked before the copy.
284 Thus, new access rights will always be set.
288 mode, copying will terminate if an error is encountered.
290 For more information about legacy mode, see
302 command is expected to be