mv command behavior

Todd Zullinger tmz at pobox.com
Mon Jul 9 16:07:55 UTC 2007


lists at dwsasia.com wrote:
> Hi, I don't know if I already sent this question or not, my server
> died before, and I havn't been able to receive the mails for a
> while.
>
> I want to move the files from one dir to another, but only if they
> are newer. So I do:
>
> mv -u /tmp/dirA/dirB /dirC/dirB
>
> Meaning moving it from being a subdir of /tmp/dirA to be a subdir of
> /dirC.
>
> The first time it works, but the next time it will end up being like
> this:
>
> /dirC/dirB/dirB :(
>
> Could I use the "cp -ru" instead with some other flag to remove
> files successfully copied?

I would suggest rsync for this task.  You could use it to sync
/tmp/dirA/dirB with /dirC/dirB, deleting files not in /tmp/dirA/dirB
from /dirC/dirB something like this:

$ rsync -av --delete /tmp/dirA/dirB/ /dirC/dirB/

The trailing slashes are significant, so check out the rsync man page
for more details.

-- 
Todd        OpenPGP -> KeyID: 0xBEAF0CE3 | URL: www.pobox.com/~tmz/pgp
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Drugs may lead to nowhere, but at least it's the scenic route.

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 542 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/fedora-list/attachments/20070709/d7bbc2b2/attachment-0001.sig>


More information about the fedora-list mailing list