I am performing a dry run using Rsync on 2 different boxes.

While i'm doing that, Under destination directory, I want a specific directory x to be ignored for sync.

Please let me know the exact pattern to ignore the directory.

The current command I'm using is:

rsync -avnc --delete $LOCAL_DIR $USERNAME@$DESTINATION_IP:$REMOTE_DIR

under DESTINATION_IP, I would want to ignore a particular directory under REMOTE_DIR.

link|improve this question
feedback

2 Answers

If you looked at the arguments for rsync, you would have seen:

--exclude=PATTERN       exclude files matching PATTERN

So with that, I would suggest the following dry run:

rsync -avnc --delete --exclude=x $LOCAL_DIR $USERNAME@$DESTINATION_IP:$REMOTE_DIR

cheers

sc.

link|improve this answer
feedback

Check out the --exclude parameter.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.