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

26 lines
859 B
Markdown
Raw Normal View History

# rsync
> 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
- transfer file from local to remote host, it supports regex.
`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}}`
2015-12-29 12:44:42 +08:00
- transfer file in archive (to preserve attributes) and compressed (zipped) mode
2015-12-29 12:44:42 +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
2015-10-22 15:31:52 +08: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}}`