I am attempting to use rsync to copy from my linux hard drive to an exfat external drive.
The working code to copy from ext4 to ext4 begins as: rsync -Razh
The code that I am attempting to use to copy from ext4 to exfat begins as rsync -hvrltD
The resulting output is too verbose. I want to suppress all output but errors.
I have tried the 'q' switch, but no matter what position I put that character in the option string, I get error messages.
What else do I need to do to suppress that output? Thank you