Sí crea un archivo temporal, por defecto en el directorio de destino y con nombre .<FILE_NAME>.<RANDOM_STRING>
. Entonces, si está copiando foo.txt
, creará un archivo tmp llamado .foo.txt.GV4H3
( GV4H3
es la cadena aleatoria que será diferente cada vez que lo ejecute). Puede controlar este comportamiento utilizando estas rsync
opciones:
--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.
Lea las partes relevantes de la rsync
página de manual (el siguiente es solo un pequeño extracto de la gran sección sobre cómo usar --partial-dir
).