<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Aug 16, 2015 at 11:13 PM, @lbutlr <span dir="ltr"><<a href="mailto:kremels@kreme.com" target="_blank">kremels@kreme.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div id=":2yv" class="a3s" style="overflow:hidden">find . -type f -atime -1 -exec rsync -aP {} 10.0.0.11:/Volumes/Drive5/{} \;<br></div></blockquote></div><br>The use of "{}" on the receiving (remote) side is superfluous -- just specifying a destination dir (your .../Drive5/ path) is enough for rsync to use the same name as the source file on the destination. For those instances where you want/need to specify a remote filename, see the --protect-args (-s) option (which you can make the default via "export <span style="color:rgb(0,0,0)">RSYNC_PROTECT_ARGS=1", and which will eventually become the default in the future).  Finally, the suggestion to use --files-from=- is a good one, which fixes all quoting issues even on the local side.</span><br><br clear="all"><div><div class="gmail_signature">..wayne..</div></div>
</div></div>