vote up 2 vote down star

I'm a Linux guy and I'm used to copying directory trees with cp -a. OS X doesn't have -a option on cp... but it does have the ditto command. I'm reading the man on ditto now, but is there anything I should specifically be looking out for?

flag

67% accept rate
what does cp -a do anyway? – SoloBold Oct 1 '08 at 23:29

5 Answers

vote up 3 vote down check

According to the cp man page cp -a is the same as cp -dpR which is

-p = preserve mode,ownership,timestamps
-R = recursive
-d = no dereference and preserve links

The OS X equivalent would be

cp -pPR

-p = preserve
-R = recursive
-P = no symbolic links are followed -- can be added but this is the default behavior

The only thing missing is -d which I think is the default behavior but I'm not positive.

I've never messed with ditto

Edit -- @SoloBold

-L follows symbolic links. -p does NOT follow symbolic links. OS X (10.4 at least) has no -d option.

that is a huge difference.

link|flag
oh shit i read that wrong :( – SoloBold Oct 1 '08 at 23:56
cp -pPR should do the job, on 10.5 at least. – Andrew Medico Oct 2 '08 at 1:29
It is the same in 10.4 – Ursid Oct 2 '08 at 1:33
vote up 0 vote down

there is a difference between ditto and cp which is that when source is a directory, cp creates a directory with that name on the destination, but ditto just copies the contents. Beware!

link|flag
vote up 1 vote down

Personally I use rsync -a (or whatever rsync params are called for). My two reasons are: I already know how to do this, and I need my scripts to be portable across Linux/BSD/Solaris. There are also some filesystems where rsync is more efficient than cp.

Sorry that's not a direct answer, I have used ditto on BSDs but don't have any gotchas for you that aren't in the man page.

link|flag
vote up 1 vote down

From Linux cp(1):

-a, --archive same as -dpR

which is confusing, since -d appears to be equivalent to -p. Anyway, OSX has -p and -R so you could just use that.

link|flag
From the OS X man pages: "Symbolic links are always followed unless the -R flag is set, in which case symbolic links are not followed." Which is opposite to the way Linux works. – SoloBold Oct 1 '08 at 23:54
vote up 0 vote down

As j04t pointed out that should be cp -pR

On OS X, you would do

cp -dRL src target

cp preserves resources in newer version of OS X (was it 10.3 when that happened?)

Hey d is kinda like an upsidedown p, right ;)

link|flag

Your Answer

Get an OpenID
or

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