Run totally silent rsync?
- by jackr
I have a cronjob that runs hourly, and is totally silent unless something goes wrong. Well ... almost ...
A part of the job is
rsync --del -Cacqrz public/. [email protected]:/target/path
This always prints "logged in". How can I make it stop? (Short of 'grep -v' ;-)
I don't get the "logged in" message if I do things like
ssh [email protected] ls
The transport is, of course, ssh (using keys).
Source host is either OSX or Ubuntu (tried both, same behavior).
Target host is Linux of some flavor.