I'm in the process of porting scripts which use rsync
to MacOS 10.15.7.
Typical commands in these scripts look like
rsync -rau --delete SOURCE DESTINATION
Is there a way to display, which files have been deleted from DESTINATION? On Linux, I would use the option --info=del
, but on the Mac version of rsync, --info
does not exist, as we can see in the man-page.
rsync
does include an option for backing up extended attributes. – Seamus Apr 20 '23 at 17:14man -M /usr/share/man rsync
:-E, --extended-attributes copy extended attributes, resource forks
, so Apple's version does support extended attributes and resource forks. – nohillside Apr 21 '23 at 08:01