What is the difference between

cp -a Dir NewDir

and

cp -pr Dir NewDir

?

link|improve this question
feedback

1 Answer

-a is equivalent to -dpr, which means copy symlinks literally (instead of their targets), preserve mode, ownership and timestamps, and recurse (copy subdirectories)

-pr would follow symlinks and copy their targets, instead of physically copying the symlink. It would still preserve mode, ownership and timestamps, and still recurse.

man cp will tell you all you need to know.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.