Is there a way to tell rsync to skip its current file while a sync is in progress, maybe by sending it a particular signal?

I already know about ignoring based on patterns, but this would be handy to me sometimes.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I'm not familiar with such functionality, and the manual page for the current version doesn't make mention either. Short of browsing thru the source looking for "hidden features" that aren't mentioned in the manual page I think it's safe to assume that there's not any such functionality.

I agree, though, that it sounds like it could be a handy feature.

link|improve this answer
feedback

I always kill rsync (control-c) and re-run with an --exclude option and possibly --delete. Since rsync leaves the destination directory partially updated, the second run should be faster because you can essentially start where you left off.

You might also look at the partial-dir option for large files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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