Last active
November 6, 2017 10:17
-
-
Save dcai/1a20da159df0534e8b9471735de26d0c to your computer and use it in GitHub Desktop.
rsync cheatsheet
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
SRC=/path/to/source | |
DEST=/path/to/dest | |
# Copy | |
rsync -aP --stats --human-readable "${SRC}" "${DEST}" | |
# Move | |
rsync -aP --stats --human-readable --remove-source-files "${SRC}" "${DEST}" | |
# Sync | |
rsync -aP --stats --human-readable --delete "${SRC}" "${DEST}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment