2014-01-26 19:57:33 +00:00
|
|
|
# rsync
|
|
|
|
|
2016-10-12 16:58:04 +01:00
|
|
|
> Transfer files either to or from a remote host (not between two remote hosts).
|
|
|
|
> Can transfer single files, or multiple files matching a pattern.
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Transfer file from local to remote host:
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync {{path/to/local_file}} {{remote_host}}:{{path/to/remote_directory}}`
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Transfer file from remote host to local:
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync {{remote_host}}:{{path/to/remote_file}} {{path/to/local_directory}}`
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2018-10-24 19:58:54 +01:00
|
|
|
- Transfer file in archive (to preserve attributes) and compressed (zipped) mode with verbose and human-readable progress:
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync -azvhP {{path/to/local_file}} {{remote_host}}:{{path/to/remote_directory}}`
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Transfer a directory and all its children from a remote to local:
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync -r {{remote_host}}:{{path/to/remote_directory}} {{path/to/local_directory}}`
|
2015-02-28 18:09:18 +00:00
|
|
|
|
2019-02-11 13:49:40 +00:00
|
|
|
- Transfer directory contents (but not the directory itself) from a remote to local:
|
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync -r {{remote_host}}:{{path/to/remote_directory}}/ {{path/to/local_directory}}`
|
2019-02-11 13:49:40 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Transfer only updated files from remote host:
|
2015-12-29 16:40:29 +00:00
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync -ru {{remote_host}}:{{path/to/remote_directory}} {{path/to/local_directory}}`
|
2015-12-29 16:40:29 +00:00
|
|
|
|
2018-11-15 13:29:11 +00:00
|
|
|
- Transfer file over SSH and delete local files that do not exist on remote host:
|
2015-02-28 18:09:18 +00:00
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync -e ssh --delete {{remote_host}}:{{path/to/remote_file}} {{path/to/local_file}}`
|
2017-12-05 18:37:48 +00:00
|
|
|
|
|
|
|
- Transfer file over SSH and show global progress:
|
|
|
|
|
2019-05-23 10:19:14 +01:00
|
|
|
`rsync -e ssh --info=progress2 {{remote_host}}:{{path/to/remote_file}} {{path/to/local_file}}`
|