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*
...