Last active
July 21, 2025 04:03
-
-
Save goooooouwa/39785f48a942fbaf474be405f2164356 to your computer and use it in GitHub Desktop.
Rsync & CP sync local folders #rsync #cp #sync
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
# copy --archive --recursive --update-only --verbose | |
cp -aRuv /from/local/* /to/local/ |
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
# --archive --progress --partial | |
rsync -aP /from/local/* /to/local/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment