Copying Files Using cp

To copy files, we could use the cp command. The general format of the command when used for simple copying is as follows:

matthew@seymour:~$ cp -a source_directory target_directory

The -a argument is the same as giving -dpR, which would be

Image -d—Preserves symbolic links (by not dereferencing them) and copies the files that they point to instead of copying the links.

Image -pPreserves all file attributes if possible. (File ownership might interfere.)

-RCopies directories recursively.

The cp command ...

Get Ubuntu Unleashed 2014 Edition: Covering 13.10 and 14.04,Ninth Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.