기존 파일과 동기화된 파일의 rsync 출력을 숨기는 방법은 무엇입니까?

기존 파일과 동기화된 파일의 rsync 출력을 숨기는 방법은 무엇입니까?

나는 출력을 가지고 있습니다 :

sent 66 bytes  received 12 bytes  156.00 bytes/sec
total size is 204  speedup is 2.62
sending incremental file list

sent 67 bytes  received 12 bytes  158.00 bytes/sec
total size is 204  speedup is 2.58
sending incremental file list

sent 66 bytes  received 12 bytes  156.00 bytes/sec
total size is 204  speedup is 2.62
sending incremental file list

sent 67 bytes  received 12 bytes  158.00 bytes/sec
total size is 204  speedup is 2.58
sending incremental file list

sent 67 bytes  received 12 bytes  158.00 bytes/sec
total size is 204  speedup is 2.58
sending incremental file list

sent 67 bytes  received 12 bytes  158.00 bytes/sec
total size is 204  speedup is 2.58
sending incremental file list

sent 67 bytes  received 12 bytes  158.00 bytes/sec
total size is 204  speedup is 2.58
sending incremental file list

sent 67 bytes  received 12 bytes  158.00 bytes/sec
total size is 204  speedup is 2.58
sending incremental file list
mysql-bin.000118
            204 100%    0.00kB/s    0:00:00 (xfr#1, to-chk=0/1)

sent 229 bytes  received 35 bytes  528.00 bytes/sec
total size is 204  speedup is 0.77

다음만 표시하는 방법이 있습니까?

sending incremental file list
mysql-bin.000118
            204 100%    0.00kB/s    0:00:00 (xfr#1, to-chk=0/1)

sent 229 bytes  received 35 bytes  528.00 bytes/sec
total size is 204  speedup is 0.77

이것이 유일하게 누락된 파일입니다.

편집: BowlOfRed에게 감사드립니다. 다음을 사용하고 있습니다.

rsync -azvp --progress --ignore-existing

이제 답변에서 as를 사용하면 작동합니다.

rsync -azp --info=name,progress --ignore-existing

답변1

rsync를 호출하는 방법이나 사용 중인 버전에 대해서는 언급하지 않았습니다. 이것은 당신이 사용하고 있는 것과 비슷하며 , 마지막에 통계와 함께 증분 목록 진행 상황을 제공하는 것과 -P같은 것을 설정합니다 .-v

적용되는 전송에 대해 "델타 보내기" 및 종료 통계를 제공하는 방법을 모르지만 파일이 전송되지 않을 때 출력이 자동으로 유지되도록 두 가지를 모두 제거하고 진행률/델타만 제공할 수 있습니다. rsync 3.x의 경우 -P보다 세분화된 버전으로 교체하는 것이 가장 좋습니다 --info.

rsync 3.2.7의 예:

$ rsync -a --info=name,progress dir/ dir2
$ touch dir/a
$ rsync -a --info=name,progress dir/ dir2
a
              0 100%    0.00kB/s    0:00:00 (xfr#1, to-chk=2/4)
$

관련 정보