Nó tạo một tệp tạm thời, theo mặc định trong thư mục đích và được đặt tên .<FILE_NAME>.<RANDOM_STRING>
. Vì vậy, nếu bạn đang sao chép foo.txt
, nó sẽ tạo một tệp tmp có tên .foo.txt.GV4H3
( GV4H3
là chuỗi ngẫu nhiên sẽ khác nhau mỗi khi bạn chạy nó). Bạn có thể kiểm soát hành vi này bằng các rsync
tùy chọn sau:
--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.
Vui lòng đọc các phần có liên quan của rsync
trang man (phần sau chỉ là một đoạn trích nhỏ của phần lớn về cách sử dụng --partial-dir
).