1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 21:15:26 +02:00

Update rsync.md

This commit is contained in:
Kang Jinwon 2015-12-30 01:40:29 +09:00
parent 0c8634409c
commit 3b6153bf96

View file

@ -20,6 +20,10 @@
`rsync -r mike@devbox:~/projects/cakeStore /Users/mike/devProjects/`
- transfer only updated files from remote host
`rsync -ru mike@devbox:~/projects/ ./projects/`
- transfer file over SSH and show progress
`rsync -e ssh --progress {{remote_host_name}}:{{remote_file}} {{local_file}}`