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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -