vote up 0 vote down star

Windows has a nice option to its XCOPY command: /D. This copies only files where the source modification time is newer than the destination time. Is there any unix/linux equivalent of this? I'm trying to get a fast copy to my local testing server.

This should be asked on SuperUser as it has nothing to do with programming. – SLaks Nov 5 at 21:34

1 Answer

vote up 2 vote down

I usually do:

rsync -avz /from/where/ /to/dest/

If you want it to delete files that doesn't exist anymore in /from/where use --delete.

It can also be used from different boxes like this:

rsync -avz eromero@mydevbox.org:/from/where/ eromero@mybox.org:/to/dest/

link|flag

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