Eu adiciono novos arquivos em / dir / a e executo o mesmo comando novamente, ele sabe o que ele faz e copia apenas os novos arquivos.
Não, não sabe o que aconteceu em uma execução anterior. Compara os dados no lado de recebimento com os dados a serem enviados. Com dados pequenos o suficiente, isso não será aparente, mas quando você tem diretórios grandes o suficiente, o tempo gasto comparando antes que a cópia realmente comece é facilmente percebido.
A verificação padrão é para tempos e tamanhos de modificação de arquivos. De man rsync
:
-c, --checksum
This changes the way rsync checks if the files have been changed
and are in need of a transfer. Without this option, rsync uses
a "quick check" that (by default) checks if each file’s size and
time of last modification match between the sender and receiver.
This option changes this to compare a 128-bit checksum for each
file that has a matching size. Generating the checksums means
that both sides will expend a lot of disk I/O reading all the
data in the files in the transfer (and this is prior to any
reading that will be done to transfer changed files), so this
can slow things down significantly.
E:
-u, --update
This forces rsync to skip any files which exist on the
destination and have a modified time that is newer than the
source file. (If an existing destination file has a
modification time equal to the source file’s, it will be updated
if the sizes are different.)
Observe que isso não está implícito nas opções que você usou. -a
é:
-a, --archive archive mode; same as -rlptgoD (no -H)
-r, --recursive recurse into directories
-l, --links copy symlinks as symlinks
-p, --perms preserve permissions
-o, --owner preserve owner (super-user only)
-g, --group preserve group
--devices preserve device files (super-user only)
--specials preserve special files
-D same as --devices --specials
-t, --times preserve times