The rsync command

Αναρτήθηκε από Γεώργιος 15/12/2017 0 Σχόλια

Rsync, which stands for "remote sync", is a remote and local file synchronization tool. It uses an algorithm that minimizes the amount of data copied by only moving the portions of files that have changed.

#rsync -htvrP #SOURCE# #DESTINATION#

-h --human-readable        output numbers in a human-readable format
-t --times                 preserve modification times
-v --verbose               increase verbosity

-r --recursive             recurse into directories
-P                          same as --partial (resume) AND --progress

Full Manual

 

Σχολιάστε

Loading...