I used this command to sync a folder structure with rsync
in combination with a file filter:
[code language=”bash” light=”true”]
rsync -avz –include ‘*/’ –include ‘**/HERE_THE_PATTERN’ –exclude=’*’ DIR_TO_SYNC REMOTEHOST:TARGETDIR
[/code]
For a dry-run, you could add the -n parameter to the call above:
[code language=”bash” light=”true”]
rsync -anvz –include ‘*/’ –include ‘**/HERE_THE_PATTERN’ –exclude=’*’ DIR_TO_SYNC REMOTEHOST:TARGETDIR
[/code]
Leave A Comment
You must be logged in to post a comment.