Skip to content

Instantly share code, notes, and snippets.

@dingzeyuli
Created November 11, 2016 15:33
Show Gist options
  • Save dingzeyuli/1cadb1a58d2417dce3a586272551ec4f to your computer and use it in GitHub Desktop.
Save dingzeyuli/1cadb1a58d2417dce3a586272551ec4f to your computer and use it in GitHub Desktop.
Faster and more efficient alternative to scp for file copying
#!/bin/sh
# whenever you use "scp", use "copy" instead, it ignores duplicate files.
rsync -azhe ssh --progress $1 $2
@dirtycold
Copy link

Works like a charm! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment