What is the official syntax for pulling multiple sources from a daemon? In analogy to a remote shell, I expected this to work:
rsync rsync://[EMAIL PROTECTED]:3141/module/'foo bar' dest/ But it doesn't; the daemon tried to access a file 'foo bar' with a space in its name. Using a newline like this does work because the newline becomes an argument delimiter in the daemon protocol: rsync rsync://[EMAIL PROTECTED]:3141/module/'foo bar' dest/ Somehow I doubt this is the official, correct way of pulling multiple sources. I also tried this: rsync rsync://[EMAIL PROTECTED]:3141/module/foo rsync://[EMAIL PROTECTED]:3141/module/bar dest/ But rsync seemed to treat the second source as a local destination (which didn't exist) and ignore the dest/ entirely. I ran these tests with rsync 2.6.9. Has anything changed since then? Matt -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html