Browse Source

Merge pull request #262 from quarcu/patch-1

Update rsync.md
Ruben Vereecken 10 years ago
parent
commit
921be18ad7
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pages/common/rsync.md

+ 4 - 0
pages/common/rsync.md

@@ -19,3 +19,7 @@
 - transfer a directory and all its children from a remote to local
 
 `rsync -r mike@devbox:~/projects/cakeStore /Users/mike/devProjects/`
+
+- transfer file over SSH and show progress 
+
+`rsync -e ssh --progress {{remote_host_name}}:{{remote_file}} {{local_file}}`