How can I get rsync to show only error messages AND a summary? -
i use rsync backup few thousands of files , pipe output file. given number of files i'd see list of transfers had issues summary show completed.
so, using -q
flag displays nicely exception error only. using --stats
shows helpful summary @ end.
the problem cannot combine them because appears -q
suppresses stats output.
any ideas welcome.
this did trick me :
rsync -azh --stats <source> <destination>
Comments
Post a Comment