![자세한 출력에 무시된 파일을 나열하려면 rsync를 가져오세요.](https://linux55.com/image/180030/%EC%9E%90%EC%84%B8%ED%95%9C%20%EC%B6%9C%EB%A0%A5%EC%97%90%20%EB%AC%B4%EC%8B%9C%EB%90%9C%20%ED%8C%8C%EC%9D%BC%EC%9D%84%20%EB%82%98%EC%97%B4%ED%95%98%EB%A0%A4%EB%A9%B4%20rsync%EB%A5%BC%20%EA%B0%80%EC%A0%B8%EC%98%A4%EC%84%B8%EC%9A%94..png)
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*
...