Update rsync.md

waldyrious/alt-syntax
Kang Jinwon 2015-12-30 01:40:29 +09:00
parent 0c8634409c
commit 3b6153bf96
1 changed files with 4 additions and 0 deletions

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}}`