mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
7 lines
349 B
Plaintext
7 lines
349 B
Plaintext
|
# copy files from remote to local, maintaining file propertires and sym-links (-a), zipping for faster transfer (-z), verbose (-v).
|
||
|
rsync -avz host:file1 :file1 /dest/
|
||
|
rsync -avz /source host:/dest
|
||
|
|
||
|
# Copy files using checksum (-c), rather than time, to detect if the file has changed. (Useful for validating backups).
|
||
|
rsync -avc /source/ /dest/
|