How can I make rsync show only error messages and resumes?

I use rsync to backup several thousand files and transfer output to a file. Given the number of files, I would like to see a list of only those programs that had problems, as well as a summary to show completed.

Thus, using the flag is -qperfectly visible except for any error. Use --statsshows a useful summary at the end.

The problem is that I cannot combine them, because it seems to -qsuppress statistics output.

Any ideas are welcome.

+4
source share
2 answers

, - . , , - . :   2 → /output.log → /output.log

0

:

rsync -azh --stats <source> <destination>
+3

All Articles