2005-01-10 08:39:26 +00:00
|
|
|
.\"-
|
1994-05-26 06:18:55 +00:00
|
|
|
.\" Copyright (c) 1989, 1990, 1993, 1994
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" This code is derived from software contributed to Berkeley by
|
|
|
|
.\" the Institute of Electrical and Electronics Engineers, Inc.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
.\" 3. Neither the name of the University nor the names of its contributors
|
1994-05-26 06:18:55 +00:00
|
|
|
.\" may be used to endorse or promote products derived from this software
|
|
|
|
.\" without specific prior written permission.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
|
|
|
.\" @(#)cp.1 8.3 (Berkeley) 4/18/94
|
1999-08-27 23:15:48 +00:00
|
|
|
.\" $FreeBSD$
|
1994-05-26 06:18:55 +00:00
|
|
|
.\"
|
2015-06-07 06:30:25 +00:00
|
|
|
.Dd June 6, 2015
|
1994-05-26 06:18:55 +00:00
|
|
|
.Dt CP 1
|
2001-07-10 10:04:09 +00:00
|
|
|
.Os
|
1994-05-26 06:18:55 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm cp
|
|
|
|
.Nd copy files
|
|
|
|
.Sh SYNOPSIS
|
2000-11-20 11:39:41 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
.Oo
|
|
|
|
.Fl R
|
|
|
|
.Op Fl H | Fl L | Fl P
|
|
|
|
.Oc
|
2002-07-23 00:42:56 +00:00
|
|
|
.Op Fl f | i | n
|
2015-06-07 06:30:25 +00:00
|
|
|
.Op Fl alpsvx
|
1994-05-26 06:18:55 +00:00
|
|
|
.Ar source_file target_file
|
2000-11-20 11:39:41 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
.Oo
|
|
|
|
.Fl R
|
|
|
|
.Op Fl H | Fl L | Fl P
|
|
|
|
.Oc
|
2002-07-23 00:42:56 +00:00
|
|
|
.Op Fl f | i | n
|
2015-06-07 06:30:25 +00:00
|
|
|
.Op Fl alpsvx
|
1994-05-26 06:18:55 +00:00
|
|
|
.Ar source_file ... target_directory
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
In the first synopsis form, the
|
1998-05-06 06:51:42 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
utility copies the contents of the
|
|
|
|
.Ar source_file
|
|
|
|
to the
|
|
|
|
.Ar target_file .
|
|
|
|
In the second synopsis form,
|
|
|
|
the contents of each named
|
|
|
|
.Ar source_file
|
|
|
|
is copied to the destination
|
|
|
|
.Ar target_directory .
|
|
|
|
The names of the files themselves are not changed.
|
|
|
|
If
|
1998-05-06 06:51:42 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
detects an attempt to copy a file to itself, the copy will fail.
|
|
|
|
.Pp
|
|
|
|
The following options are available:
|
|
|
|
.Bl -tag -width flag
|
|
|
|
.It Fl H
|
|
|
|
If the
|
|
|
|
.Fl R
|
|
|
|
option is specified, symbolic links on the command line are followed.
|
|
|
|
(Symbolic links encountered in the tree traversal are not followed.)
|
|
|
|
.It Fl L
|
|
|
|
If the
|
|
|
|
.Fl R
|
|
|
|
option is specified, all symbolic links are followed.
|
|
|
|
.It Fl P
|
|
|
|
If the
|
|
|
|
.Fl R
|
|
|
|
option is specified, no symbolic links are followed.
|
2001-05-25 07:32:58 +00:00
|
|
|
This is the default.
|
1994-05-26 06:18:55 +00:00
|
|
|
.It Fl R
|
|
|
|
If
|
|
|
|
.Ar source_file
|
|
|
|
designates a directory,
|
1998-05-06 06:51:42 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
copies the directory and the entire subtree connected at that point.
|
2005-02-25 00:40:46 +00:00
|
|
|
If the
|
|
|
|
.Ar source_file
|
|
|
|
ends in a
|
2005-02-24 00:06:22 +00:00
|
|
|
.Pa / ,
|
|
|
|
the contents of the directory are copied rather than the
|
|
|
|
directory itself.
|
1994-05-26 06:18:55 +00:00
|
|
|
This option also causes symbolic links to be copied, rather than
|
|
|
|
indirected through, and for
|
1998-05-06 06:51:42 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
to create special files rather than copying them as normal files.
|
|
|
|
Created directories have the same mode as the corresponding source
|
|
|
|
directory, unmodified by the process' umask.
|
2001-02-04 02:02:38 +00:00
|
|
|
.Pp
|
|
|
|
Note that
|
|
|
|
.Nm
|
|
|
|
copies hard linked files as separate files.
|
|
|
|
If you need to preserve hard links, consider using
|
|
|
|
.Xr tar 1 ,
|
|
|
|
.Xr cpio 1 ,
|
|
|
|
or
|
|
|
|
.Xr pax 1
|
|
|
|
instead.
|
2008-03-10 19:58:41 +00:00
|
|
|
.It Fl a
|
|
|
|
Archive mode.
|
|
|
|
Same as
|
|
|
|
.Fl RpP .
|
1994-05-26 06:18:55 +00:00
|
|
|
.It Fl f
|
|
|
|
For each existing destination pathname, remove it and
|
|
|
|
create a new file, without prompting for confirmation
|
|
|
|
regardless of its permissions.
|
|
|
|
(The
|
1996-02-19 00:44:19 +00:00
|
|
|
.Fl f
|
1996-03-08 06:58:08 +00:00
|
|
|
option overrides any previous
|
|
|
|
.Fl i
|
2002-07-23 00:42:56 +00:00
|
|
|
or
|
|
|
|
.Fl n
|
1996-03-08 06:58:08 +00:00
|
|
|
options.)
|
1994-05-26 06:18:55 +00:00
|
|
|
.It Fl i
|
1998-05-06 06:51:42 +00:00
|
|
|
Cause
|
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
to write a prompt to the standard error output before copying a file
|
|
|
|
that would overwrite an existing file.
|
|
|
|
If the response from the standard input begins with the character
|
2001-07-15 07:53:42 +00:00
|
|
|
.Sq Li y
|
1996-03-08 06:58:08 +00:00
|
|
|
or
|
|
|
|
.Sq Li Y ,
|
1994-05-26 06:18:55 +00:00
|
|
|
the file copy is attempted.
|
1996-03-08 06:58:08 +00:00
|
|
|
(The
|
|
|
|
.Fl i
|
|
|
|
option overrides any previous
|
|
|
|
.Fl f
|
2002-07-23 00:42:56 +00:00
|
|
|
or
|
|
|
|
.Fl n
|
|
|
|
options.)
|
2006-08-25 09:58:13 +00:00
|
|
|
.It Fl l
|
|
|
|
Create hard links to regular files in a hierarchy instead of copying.
|
2002-07-23 00:42:56 +00:00
|
|
|
.It Fl n
|
2002-08-09 10:38:34 +00:00
|
|
|
Do not overwrite an existing file.
|
2002-07-23 00:42:56 +00:00
|
|
|
(The
|
|
|
|
.Fl n
|
|
|
|
option overrides any previous
|
|
|
|
.Fl f
|
|
|
|
or
|
|
|
|
.Fl i
|
1996-03-08 06:58:08 +00:00
|
|
|
options.)
|
1994-05-26 06:18:55 +00:00
|
|
|
.It Fl p
|
1998-05-06 06:51:42 +00:00
|
|
|
Cause
|
|
|
|
.Nm
|
2003-06-07 06:35:36 +00:00
|
|
|
to preserve the following attributes of each source
|
|
|
|
file in the copy: modification time, access time,
|
2012-09-04 12:27:23 +00:00
|
|
|
file flags, file mode, ACL, user ID, and group ID, as allowed by permissions.
|
1994-05-26 06:18:55 +00:00
|
|
|
.Pp
|
|
|
|
If the user ID and group ID cannot be preserved, no error message
|
|
|
|
is displayed and the exit value is not altered.
|
|
|
|
.Pp
|
2003-06-07 06:35:36 +00:00
|
|
|
If the source file has its set-user-ID bit on and the user ID cannot
|
|
|
|
be preserved, the set-user-ID bit is not preserved
|
1994-05-26 06:18:55 +00:00
|
|
|
in the copy's permissions.
|
2003-06-07 06:35:36 +00:00
|
|
|
If the source file has its set-group-ID bit on and the group ID cannot
|
|
|
|
be preserved, the set-group-ID bit is not preserved
|
1994-05-26 06:18:55 +00:00
|
|
|
in the copy's permissions.
|
2003-06-07 06:35:36 +00:00
|
|
|
If the source file has both its set-user-ID and set-group-ID bits on,
|
1994-05-26 06:18:55 +00:00
|
|
|
and either the user ID or group ID cannot be preserved, neither
|
2003-06-07 06:35:36 +00:00
|
|
|
the set-user-ID nor set-group-ID bits are preserved in the copy's
|
1994-05-26 06:18:55 +00:00
|
|
|
permissions.
|
2015-06-07 06:30:25 +00:00
|
|
|
.It Fl s
|
|
|
|
Create symbolic links to regular files in a hierarchy instead of copying.
|
1999-08-26 02:44:56 +00:00
|
|
|
.It Fl v
|
|
|
|
Cause
|
|
|
|
.Nm
|
|
|
|
to be verbose, showing files as they are copied.
|
2010-01-17 09:37:31 +00:00
|
|
|
.It Fl x
|
|
|
|
File system mount points are not traversed.
|
1994-05-26 06:18:55 +00:00
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
For each destination file that already exists, its contents are
|
2004-07-02 21:04:19 +00:00
|
|
|
overwritten if permissions allow.
|
|
|
|
Its mode, user ID, and group
|
1998-10-13 08:52:29 +00:00
|
|
|
ID are unchanged unless the
|
|
|
|
.Fl p
|
|
|
|
option was specified.
|
1994-05-26 06:18:55 +00:00
|
|
|
.Pp
|
2001-07-15 07:53:42 +00:00
|
|
|
In the second synopsis form,
|
|
|
|
.Ar target_directory
|
1994-05-26 06:18:55 +00:00
|
|
|
must exist unless there is only one named
|
|
|
|
.Ar source_file
|
2001-07-15 07:53:42 +00:00
|
|
|
which is a directory and the
|
|
|
|
.Fl R
|
1994-05-26 06:18:55 +00:00
|
|
|
flag is specified.
|
|
|
|
.Pp
|
|
|
|
If the destination file does not exist, the mode of the source file is
|
|
|
|
used as modified by the file mode creation mask
|
|
|
|
.Pf ( Ic umask ,
|
|
|
|
see
|
|
|
|
.Xr csh 1 ) .
|
2003-06-07 06:35:36 +00:00
|
|
|
If the source file has its set-user-ID bit on, that bit is removed
|
1994-05-26 06:18:55 +00:00
|
|
|
unless both the source file and the destination file are owned by the
|
|
|
|
same user.
|
2003-06-07 06:35:36 +00:00
|
|
|
If the source file has its set-group-ID bit on, that bit is removed
|
1994-05-26 06:18:55 +00:00
|
|
|
unless both the source file and the destination file are in the same
|
|
|
|
group and the user is a member of that group.
|
2003-06-07 06:35:36 +00:00
|
|
|
If both the set-user-ID and set-group-ID bits are set, all of the above
|
1994-05-26 06:18:55 +00:00
|
|
|
conditions must be fulfilled or both bits are removed.
|
|
|
|
.Pp
|
|
|
|
Appropriate permissions are required for file creation or overwriting.
|
|
|
|
.Pp
|
2001-07-15 07:53:42 +00:00
|
|
|
Symbolic links are always followed unless the
|
|
|
|
.Fl R
|
1994-05-26 06:18:55 +00:00
|
|
|
flag is set, in which case symbolic links are not followed, by default.
|
|
|
|
The
|
|
|
|
.Fl H
|
2001-07-15 07:53:42 +00:00
|
|
|
or
|
1994-05-26 06:18:55 +00:00
|
|
|
.Fl L
|
|
|
|
flags (in conjunction with the
|
|
|
|
.Fl R
|
|
|
|
flag) cause symbolic links to be followed as described above.
|
|
|
|
The
|
|
|
|
.Fl H ,
|
|
|
|
.Fl L
|
|
|
|
and
|
|
|
|
.Fl P
|
|
|
|
options are ignored unless the
|
|
|
|
.Fl R
|
|
|
|
option is specified.
|
|
|
|
In addition, these options override each other and the
|
|
|
|
command's actions are determined by the last one specified.
|
2003-04-07 11:00:56 +00:00
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Nm
|
|
|
|
receives a
|
|
|
|
.Dv SIGINFO
|
|
|
|
(see the
|
|
|
|
.Cm status
|
|
|
|
argument for
|
|
|
|
.Xr stty 1 )
|
|
|
|
signal, the current input and output file and the percentage complete
|
|
|
|
will be written to the standard output.
|
2005-01-16 16:41:59 +00:00
|
|
|
.Sh EXIT STATUS
|
2001-08-15 09:09:47 +00:00
|
|
|
.Ex -std
|
2013-03-15 20:12:54 +00:00
|
|
|
.Sh EXAMPLES
|
|
|
|
Make a copy of file
|
|
|
|
.Pa foo
|
|
|
|
named
|
|
|
|
.Pa bar :
|
|
|
|
.Pp
|
|
|
|
.Dl $ cp foo bar
|
|
|
|
.Pp
|
|
|
|
Copy a group of files to the
|
|
|
|
.Pa /tmp
|
|
|
|
directory:
|
|
|
|
.Pp
|
|
|
|
.Dl $ cp *.txt /tmp
|
|
|
|
.Pp
|
|
|
|
Copy the directory
|
|
|
|
.Pa junk
|
|
|
|
and all of its contents (including any subdirectories) to the
|
|
|
|
.Pa /tmp
|
|
|
|
directory:
|
|
|
|
.Pp
|
|
|
|
.Dl $ cp -R junk /tmp
|
1994-05-26 06:18:55 +00:00
|
|
|
.Sh COMPATIBILITY
|
|
|
|
Historic versions of the
|
1998-05-06 06:51:42 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
utility had a
|
|
|
|
.Fl r
|
|
|
|
option.
|
2006-10-24 18:42:42 +00:00
|
|
|
This implementation supports that option, however, its behavior
|
|
|
|
is different from historical
|
|
|
|
.Fx
|
|
|
|
behavior.
|
2006-10-27 08:26:24 +00:00
|
|
|
Use of this option
|
2006-10-24 18:42:42 +00:00
|
|
|
is strongly discouraged as the behavior is
|
|
|
|
implementation-dependent.
|
2006-10-27 08:26:24 +00:00
|
|
|
In
|
|
|
|
.Fx ,
|
2006-10-07 22:14:43 +00:00
|
|
|
.Fl r
|
2006-10-27 08:26:24 +00:00
|
|
|
is a synonym for
|
2006-10-24 18:42:42 +00:00
|
|
|
.Fl RL
|
2006-10-27 08:26:24 +00:00
|
|
|
and works the same unless modified by other flags.
|
2006-11-02 19:10:05 +00:00
|
|
|
Historical implementations
|
2006-10-24 18:42:42 +00:00
|
|
|
of
|
2006-10-07 22:14:43 +00:00
|
|
|
.Fl r
|
2006-10-27 08:26:24 +00:00
|
|
|
differ as they copy special files as normal
|
2006-10-24 18:42:42 +00:00
|
|
|
files while recreating a hierarchy.
|
1999-11-28 09:34:21 +00:00
|
|
|
.Pp
|
|
|
|
The
|
2015-06-07 06:30:25 +00:00
|
|
|
.Fl l,
|
|
|
|
.Fl s,
|
|
|
|
.Fl v,
|
|
|
|
.Fl x
|
2002-07-23 00:42:56 +00:00
|
|
|
and
|
|
|
|
.Fl n
|
|
|
|
options are non-standard and their use in scripts is not recommended.
|
1994-05-26 06:18:55 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr mv 1 ,
|
|
|
|
.Xr rcp 1 ,
|
2001-07-15 07:53:42 +00:00
|
|
|
.Xr umask 2 ,
|
1994-05-26 06:18:55 +00:00
|
|
|
.Xr fts 3 ,
|
|
|
|
.Xr symlink 7
|
1996-12-14 05:51:58 +00:00
|
|
|
.Sh STANDARDS
|
1994-05-26 06:18:55 +00:00
|
|
|
The
|
1998-05-06 06:51:42 +00:00
|
|
|
.Nm
|
1994-05-26 06:18:55 +00:00
|
|
|
command is expected to be
|
|
|
|
.St -p1003.2
|
|
|
|
compatible.
|
1996-08-29 18:06:19 +00:00
|
|
|
.Sh HISTORY
|
|
|
|
A
|
|
|
|
.Nm
|
|
|
|
command appeared in
|
|
|
|
.At v1 .
|