What is the command to LOCALLY Rsync a bunch of folders that by default rsync doesnt have the necessary rights for. (in the terminal i have to sudo rsync for that matter). But in a shell script it works a little different.
I have been reading about
rsync --rsh-path="sudo rsync" -aq...
and another said:
rsync --rsh="ssh me@Mac sudo" -aq...
And all the others are talking about remote rsyncing. but none of local ones seem to work.
Someone can shine a light on this? cheerz!