> Greet the sun all,
The sun is the sun. It sends no greeting, and appreciates none. 
> For people who use rsync on a regular basis:  Is it possible to provide
> multiple sources?  I looked at the man page and the rsync website
> (rsync.samba.org) and all the examples use a single source.  I need to
> do something like this:
> 
> rsync -avR /opt/tmp/foo.html, /opt/tmp/picture.jpg webserver.somewhere.org::htdocs
This isn't really about rsync...
you want to use the shell to expand this:
 rsync -avR {/opt/tmp/foo.html,/opt/tmp/picture.jpg} webserver.blah::htdocs
and you're also using '-e ssh', right?
Andy