Last active
February 21, 2016 15:06
-
-
Save erangaeb/16d8968459fb1eccbc8b to your computer and use it in GitHub Desktop.
Rsync usage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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