Displaying 1 result from an estimated 1 matches for "rvnc".
Did you mean:
rdnc
2014 Jun 16
2
Print files which would be transfered by rsync (when syncing two directories)
...rking solutions include:
* `rsync --dry-run --info=COPY -r -c $X/ $Y/` # same as above with
trailing slashes
* `rsync -avun $SOURCE $TARGET`
[http://unix.stackexchange.com/questions/57305/rsync-compare-directories] (printing
both files or nothing (with and without trailing slashes))
* `rsync -rvnc --delete $X/ $Y/`
[http://psung.blogspot.de/2008/06/comparing-directory-trees-with-diff-or.html]
(basically the same as `avun`, but does the same)
* `rsync -n $X $Y`
[http://superuser.com/questions/576687/rsync-print-only-files-that-would-have-been-changed]
which seems already false by intuition...