rsync
전송된 파일 외에 전송에서 무시/제외된 모든 파일을 나열할 수 있나요?
답변1
옵션 사용-vv
$ rsync -rvv test/a/ test/b/ --exclude '/files/a*'
sending incremental file list
[sender] hiding file files/all because of pattern /files/a*
...
rsync
전송된 파일 외에 전송에서 무시/제외된 모든 파일을 나열할 수 있나요?
옵션 사용-vv
$ rsync -rvv test/a/ test/b/ --exclude '/files/a*'
sending incremental file list
[sender] hiding file files/all because of pattern /files/a*
...