Command

cp

3 useful snippets found.

How to copy multiple files at once

cp [file1] [file2]... [dest_dir]

How to copy files preserving attributes/dates

cp -p [source] [dest]

How to copy a directory

cp -r [source] [dest]