2014-01-26 19:57:33 +00:00
|
|
|
# rsync
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Transfers a file either to or from a remote host.
|
|
|
|
> Does not allow transfer between two remote hosts.
|
|
|
|
> Can transfer single files or files matched by 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
|
|
|
|
|
|
|
`rsync {{path_to_file}} {{remote_host_name}}:{{remote_host_location}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Transfer file from remote host to local:
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2014-01-28 12:00:11 +00:00
|
|
|
`rsync {{remote_host_name}}:{{remote_file_location}} {{local_file_location}}`
|
2014-01-26 19:57:33 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Transfer all *.js files in current directory to host 'devbox' as user 'mike':
|
2014-01-26 19:57:33 +00:00
|
|
|
|
|
|
|
`rsync *.js mike@devbox:~/projects/cakeStore/styles/`
|
|
|
|
|
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
|
|
|
|
|
|
|
`rsync -r mike@devbox:~/projects/cakeStore /Users/mike/devProjects/`
|
2015-02-28 18:09:18 +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
|
|
|
|
|
|
|
`rsync -ru mike@devbox:~/projects/ ./projects/`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Transfer file over SSH and show progress:
|
2015-02-28 18:09:18 +00:00
|
|
|
|
2015-03-12 09:23:56 +00:00
|
|
|
`rsync -e ssh --progress {{remote_host_name}}:{{remote_file}} {{local_file}}`
|