I'm looking for the difference between cp -r
and cp -a
. What does "recursive" mean in terms of copying files from a folder?

- 67,283
- 35
- 116
- 255

- 2,759
3 Answers
Recursive means that cp
copies the contents of directories, and if a directory has subdirectories they are copied (recursively) too. Without -R
, the cp
command skips directories. -r
is identical with -R
on Linux, it differs in some edge cases on some other unix variants.
By default, cp
creates a new file which has the same content as the old file, and the same permissions but restricted by the umask; the copy is dated from the time of the copy, and belongs to the user doing the copy. With the -p
option, the copy has the same modification time, the same access time, and the same permissions as the original. It also has the same owner and group as the original, if the user doing the copy has the permission to create such files.
The -a
option means -R
and -p
, plus a few other preservation options. It attempts to make a copy that's as close to the original as possible: same directory tree, same file types, same contents, same metadata (times, permissions, extended attributes, etc.).

- 829,060
The -r or -R option for "recursive" means that it will copy all of the files including the files inside of subfolders.
The -a option as listed is the same as -dR which means it will preserve links as well as copy the contents of subdirectories. What it means by preserving links is that it will not follow links as it is recursively copying.
-r=-R
-a=-dR --preserve=all
-d=--no-dereference --preserve=links
Then:
-r=-R
-a=-R --no-dereference --preserve=links --preserve=all

- 233
- 1
- 14
-r
because-a
(fora
rchive) is always the safest and probably what you expected to happen. – ams Aug 08 '12 at 09:20-r
is because you're on some unix variant other than Linux that doesn't have-a
, and generally you'd usecp -rp
. Orrsync -a
. – Gilles 'SO- stop being evil' Aug 08 '12 at 09:51-a
(short for--archive
) means-dR --preserve=all
. Which is almost the same as what you said. – Isaac Rabinovitch Nov 13 '21 at 17:39but not directory structure
" – Oleksii Nezhyborets Feb 05 '22 at 09:32-a
is an alias for-RPp
and-R
does preserve directory structure`. – Gilles 'SO- stop being evil' Feb 05 '22 at 10:37but not directory structure
note on the man page forcp
on MacOS today. Did either of you happen to figure out what that means that it does not preserve the directory structure? – plafratt Jan 30 '24 at 15:11