2014-10-19 17:43:43 +02:00
|
|
|
# To copy files from remote to local, maintaining file properties and sym-links (-a), zipping for faster transfer (-z), verbose (-v).
|
2014-03-07 23:29:10 +01:00
|
|
|
rsync -avz host:file1 :file1 /dest/
|
|
|
|
rsync -avz /source host:/dest
|
|
|
|
|
2014-10-19 17:43:43 +02:00
|
|
|
# Copy files using checksum (-c) rather than time to detect if the file has changed. (Useful for validating backups).
|
2014-03-07 23:29:10 +01:00
|
|
|
rsync -avc /source/ /dest/
|
2014-10-19 17:43:43 +02:00
|
|
|
|
|
|
|
# Copy contents of /src/foo to destination:
|
|
|
|
|
|
|
|
# This command will create /dest/foo if it does not already exist
|
|
|
|
rsync -auv /src/foo /dest
|
|
|
|
|
|
|
|
# Explicitly copy /src/foo to /dest/foo
|
|
|
|
rsync -auv /src/foo/ /dest/foo
|