답변:
rsync -rvn localdir targetdir
-n은 조치를 표시하는 것을 의미합니다 (조치가 수행되지 않음).
'v'가 필요하거나 아무것도 표시하지 않습니다. (나머지 답변은 이것을 잊어 버린다 ...)
나는 이런 식으로 갈 것이다 :
#! /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 ...
그리고 화면에 파일 이름을 출력합니다. ~이다. 양도되고있다 (또는 당신이 달리기를하고 있다면, 양도되었을 것이다). 확인하려면 왜 rsync가 항목 전송 모드를 사용하려고했습니다. https://serverfault.com/a/618740/27813
다른 사람들이 지적했듯이, rsync는 기본적으로 파일 크기와 타임 스탬프를 기준으로 비교합니다. 둘 다 일치해야하는 경우 "델타 복사본"이 해당 파일에서 시작됩니다. 실제로 어떤 파일이 다른지 확인하려면 "-c"체크섬 모드를 사용하십시오.
--dry-run
의 사용에 달려 있습니다.-v
과--progress options
- 출력을 전혀 얻지 못한다면 필요에 따라이 옵션이 설정됩니다. 파일이 변경되지 않은 경우에도 디렉토리 이름을 전송한다는 사실을 알았지 만 출력을 통과하여 필터링 할 수 있습니다.sed
또는 유사합니다.