You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What would be the correct syntax when using rsync to put files?
For example I want to sync everything in my /backup dir excluding files starting with name "admin..xx" and "tmp..xx"
--exclude-tag='admin*, tmp*'
Does this look good ? or else please correct me /usr/local/bin/ydcmd --rsync put /backup disk:/Docs --exclude-tag='admin*, tmp*'
The text was updated successfully, but these errors were encountered:
--exclude-tag is just marker-filename, not exclude file-mask - if file exists, whole directory excluded. You need to put your admin* and tmp* files to different dir and exclude what dir.
oh... so you mean there is no way to actually exclude files/folders from ydcmd ? In that I wish this as a feature request. Had to resort to using rClone which supports proper exclusions.
Thanks
What would be the correct syntax when using rsync to put files?
For example I want to sync everything in my /backup dir excluding files starting with name "admin..xx" and "tmp..xx"
Does this look good ? or else please correct me
/usr/local/bin/ydcmd --rsync put /backup disk:/Docs --exclude-tag='admin*, tmp*'
The text was updated successfully, but these errors were encountered: