Linux - Synchronise 2 Directories: Difference between revisions

From PiRho Knowledgebase
Jump to navigationJump to search
No edit summary
mNo edit summary
Line 1: Line 1:
[[Category:Linux]]
<code>rsync -avu --delete "/home/user/A/" "/home/user/B"</code>
<code>rsync -avu --delete "/home/user/A/" "/home/user/B"</code>
;-a
;-a

Revision as of 11:44, 6 March 2025

rsync -avu --delete "/home/user/A/" "/home/user/B"

-a
archive mode; equals -rlptgoD (no -H, -A, -X)
-v
run verbosely
-u
only copy files with a newer modification time (or size difference if the times are equal)
--delete
delete the files in target folder that do not exist in the source

Reference: Stack Exchange: How to sync two folders with command line tools?