rsync won't delete files on destination
The reason is because you are calling rsync on /tmp/1/b, which will not consider the /tmp/1/a file at all.
Your intention seems to be to rsync the directory /tmp/1/ -- if you use "/tmp/1/" as the source rather than the individual files, it will notice that "a" has been deleted from the directory and remove it from the target.
Remove the *
. As mentioned in the rsync man pages the --delete
option doesn't work with wildcard entries.
Use this instead:
rsync -a --delete $DIR1/ $DIR2/
"
--delete
This tells rsync to delete extraneous files from the receiving side (ones that aren’t on the sending side), but only for the directories that are being synchronized. You must have asked rsync to send the whole directory (e.g. dir
or dir/
) without using a wildcard for the directory’s contents (e.g. dir/*
) since the wildcard is expanded by the shell and rsync thus gets a request to transfer individual files, not the files' parent directory. Files that are excluded from the transfer are also excluded from being deleted unless you use the --delete-excluded
option or mark the rules as only matching on the sending side (see the include/exclude modifiers in the FILTER RULES section).
"