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?
|
|
|
||
|
|
|
According to the cp man page cp -a is the same as cp -dpR which is
The OS X equivalent would be cp -pPR
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. |
||||||
|
|
|
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! |
||
|
|
|
|
Personally I use Sorry that's not a direct answer, I have used |
||
|
|
|
|
From Linux cp(1):
which is confusing, since -d appears to be equivalent to -p. Anyway, OSX has -p and -R so you could just use that. |
||
|
|
|
As j04t pointed out that should be
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 ;) |
|||
|
|
