rsync output tailoring
by flos from LinuxQuestions.org on (#5SCWN)
I want to eliminate part of rsync's default output.
I refer to the last two lines emitted by an rsync command.
These are the ones that look like
Code:sent 171,915 bytes received 11 bytes 114,617.33 bytes/sec
total size is 3,007,789,737 speedup is 17,494.68In common with many (I suspect), I use rsync in a bash script to create a backup routine which is especially designed for my local setup (three computers on a local, wired network).
There are many rsync command lines, and I don't need repetitions of the information on bytes sent, received, total or speedup.
I know I could redirect output to a file, but that leaves me with no confirmation of what has just been saved.
I hope someone knows their way around the info=FLAGs and can help.
I refer to the last two lines emitted by an rsync command.
These are the ones that look like
Code:sent 171,915 bytes received 11 bytes 114,617.33 bytes/sec
total size is 3,007,789,737 speedup is 17,494.68In common with many (I suspect), I use rsync in a bash script to create a backup routine which is especially designed for my local setup (three computers on a local, wired network).
There are many rsync command lines, and I don't need repetitions of the information on bytes sent, received, total or speedup.
I know I could redirect output to a file, but that leaves me with no confirmation of what has just been saved.
I hope someone knows their way around the info=FLAGs and can help.