Ele cria um arquivo temporário, por padrão, no diretório de destino e é nomeado .<FILE_NAME>.<RANDOM_STRING>
. Portanto, se você estiver copiando foo.txt
, ele criará um arquivo tmp chamado .foo.txt.GV4H3
( GV4H3
é a sequência aleatória que será diferente toda vez que você o executar). Você pode controlar esse comportamento usando estas rsync
opções:
--partial
By default, rsync will delete any partially transferred
file if the transfer is interrupted. In some circum‐
stances it is more desirable to keep partially trans‐
ferred files. Using the --partial option tells rsync to
keep the partial file which should make a subsequent
transfer of the rest of the file much faster.
--partial-dir=DIR
A better way to keep partial files than the --partial
option is to specify a DIR that will be used to hold
the partial data (instead of writing it out to the des‐
tination file). On the next transfer, rsync will use a
file found in this dir as data to speed up the resump‐
tion of the transfer and then delete it after it has
served its purpose.
Por favor, leia as partes relevantes da rsync
página de manual (a seguir é apenas um pequeno extrato da seção grande sobre como usar --partial-dir
).