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