Skip to content

Instantly share code, notes, and snippets.

@erangaeb
Last active February 21, 2016 15:06
Show Gist options
  • Save erangaeb/16d8968459fb1eccbc8b to your computer and use it in GitHub Desktop.
Save erangaeb/16d8968459fb1eccbc8b to your computer and use it in GitHub Desktop.
Rsync usage
# format
rsync <options> <source> <destination>
# most commen optaions
-v : verbose
-r : syncs recursively(used when directory backup)
-a : archive mode(altrenative to -r). syncs recursively and preserves symbolic links, special and device files, modification times, group, owner, and permissions
-h : human readable output
-z : comporess files while sync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment