1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/rsync.md

29 lines
970 B
Markdown
Raw Normal View History

# rsync
> Transfer files either to or from a remote host (not between two remote hosts).
> Can transfer single files, or multiple files matching a pattern.
- Transfer file from local to remote host:
2015-12-29 13:03:08 +08:00
`rsync {{path/to/file}} {{remote_host_name}}:{{remote_host_location}}`
- Transfer file from remote host to local:
2014-01-28 20:00:11 +08:00
`rsync {{remote_host_name}}:{{remote_file_location}} {{local_file_location}}`
- Transfer file in archive (to preserve attributes) and compressed (zipped) mode:
2015-12-29 13:03:08 +08:00
`rsync -az {{path/to/file}} {{remote_host_name}}:{{remote_host_location}}`
- Transfer a directory and all its children from a remote to local:
`rsync -r {{remote_host_name}}:{{remote_folder_location}} {{local_folder_location}}`
2015-02-28 18:09:18 +00:00
- Transfer only updated files from remote host:
2015-12-30 01:40:29 +09:00
`rsync -ru {{remote_host_name}}:{{remote_folder_location}} {{local_folder_location}}`
2015-12-30 01:40:29 +09:00
- Transfer file over SSH and show progress:
2015-02-28 18:09:18 +00:00
`rsync -e ssh --progress {{remote_host_name}}:{{remote_file}} {{local_file}}`