Last active
September 10, 2022 04:18
-
-
Save smhr/9f85899935b43831bb75489fa491aa2b to your computer and use it in GitHub Desktop.
rsync examples
This file contains 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
## sync a remote directory on a server S1 to a local directory L2 (i.e. copy S1 into L2) | |
rsync -avh [email protected]:/S1 /L2 | |
## sync files from a remote directory on a server S1 to a local directory L2 (i.e. copy S1 contents into local L2) | |
rsync -avh [email protected]:/S1/ /L2 | |
## sync a local directory L1 to a remote directory /S2 (i.e. copy L1 into remote S2) | |
rsync -avh ./L1 [email protected]:/S2 | |
## sync files from a local directory L1 to a remote directory /S2 (i.e. copy L1 and its contents into remote S2) | |
rsync -avh ./L1/ [email protected]:/S2 | |
## sync two local folders from L1 to L2 (i.e. copy L1 into L2) | |
rsync -avh /L1 /L2 | |
## sync two local folders from L1 to L2 (i.e. copy L1 contents into L2) | |
rsync -avh /L1/ /L2 |
Sync paper folder
Update paper folder to sync
Remove -z option (it reduces the transfer speed).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Update gist