Il crée un fichier temporaire, par défaut dans le répertoire cible et nommé .<FILE_NAME>.<RANDOM_STRING>
. Ainsi, si vous copiez foo.txt
il créera un fichier tmp appelé .foo.txt.GV4H3
( GV4H3
est la chaîne aléatoire qui sera différente à chaque fois que vous l'exécutez). Vous pouvez contrôler ce comportement à l'aide des éléments suivants rsync
options :
--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.
Veuillez lire les parties pertinentes de la rsync
(ce qui suit n'est qu'un petit extrait de la grande section sur la façon d'utiliser le logiciel --partial-dir
).