Answers:
Rsync有一个dry-run
选项:
-n, --dry-run show what would have been transferred
我不确定这是否是您想要的。
如果要diff
在两棵树上浏览文件,则可以使用find和pipe递归搜索两个方向,以输出到ls并将它们都通过管道传输到文件。然后,您可以diff
用来比较文件。
rsync -rvn localdir targetdir
-n表示仅显示动作(不执行任何动作)。
请注意,您需要输入“ v”,否则将不会显示任何内容!(其余答案忘记了这一点...)
基于其他答案和https://serverfault.com/a/618740/114520
--dry-run
(或-n
)避免修改--itemize-changes
(或-i
)查找更改--archive
(或-a
)获取所有子目录egrep
过滤以点开头的条目(不变)这给你: rsync -nia source destination | egrep -v "sending incremental file list" | egrep -v "^\."
如果只想一种方法,可以更改命令:
rsync -nia source destination | egrep -v "sending incremental file list" | egrep -v "^(\.|<)"
rsync -nia source destination | egrep -v "sending incremental file list" | egrep -v "^(\.|>)"
如果只需要文件,则添加awk
魔术:rsync -nia source destination | egrep -v "sending incremental file list" | egrep -v "^\." | awk '{print $2}'
我会去这样的事情:
#! /bin/bash
set -eu ## Stop on errors and on undefined variables
## The local directory name
LOCAL_DIR=$1
## The remote directory in rsync sintax. Example: "machine:directory"
REMOTE_DIR=$2
shift
shift
# Now the first two args are gone and any other remaining arguments, if any,
# can be expanded with $* or $@
# Create temporary file in THIS directory (hopefully in the same disk as $1:
# we need to hard link, which can only made in the same partition)
tmpd="$(mktemp -d "$PWD/XXXXXXX.tmp" )"
# Upon exit, remove temporary directory, both on error and on success
trap 'rm -rf "$tmpd"' EXIT
# Make a *hard-linked* copy of our repository. It uses very little space
# and is very quick
cp -al "$LOCAL_DIR" "$tmpd"
# Copy the files. The final «"$@"» allows us to pass on arguments for rsync
# from the command line (after the two directories).
rsync -a "$REMOTE_DIR"/ "$tmpd/" --size-only "$@"
# Compare both trees
meld "$LOCAL_DIR" "$tmpd"
例如:
$ cd svn
$ rsyncmeld myproject othermachine:myproject -v --exclude '*.svn' --exclude build
事情的真相是,如果你运行rsync -v ...
它的文件名输出到屏幕上,该文件正在被转移(或者将已经转移,如果你正在做一个--dry运行)。要确定为什么 rsync将要传输它,请使用逐项模式:https : //serverfault.com/a/618740/27813
正如其他人指出的那样,默认情况下,rsync仅根据文件大小和时间戳进行比较,这两者都必须匹配,否则将在该文件上启动“增量复制”。如果您真的想查看哪些文件不同,请使用“ -c”校验和模式。
--dry-run
将取决于您对-v
and 的使用,--progress options
因此,如果根本没有输出,请检查是否根据需要设置了这些选项。我注意到,即使文件没有更改,它也将发送目录名称,但是您可以通过将输出通过sed
或类似方式将其过滤掉。