Difference between revisions of "Cp (Unix)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "cp is a UNIX command for copying files and directories. The command has three principal modes of operation, expressed by the types of arguments presented to the program for co...")
 
(External links)
Line 5: Line 5:
 
== External links ==
 
== External links ==
  
* [https://en.wikipedia.org/wiki/Cp_(Unix) cp_(Unix)] @ Wikipedia
+
* [https://en.wikipedia.org/wiki/Cp_(Unix) cp (Unix)] @ Wikipedia
 
* http://www.computerhope.com/unix/ucp.htm
 
* http://www.computerhope.com/unix/ucp.htm

Revision as of 14:20, 19 October 2015

cp is a UNIX command for copying files and directories. The command has three principal modes of operation, expressed by the types of arguments presented to the program for copying a file to another file, one or more files to a directory, or for copying entire directories to another directory.

The utility further accepts various command line option flags to detail the operations performed. The two major specifications are POSIX cp and GNU cp. GNU cp has many additional options over the POSIX version.

External links