Rsync

獲取 rsync 以在詳細輸出中列出被忽略的文件

  • September 11, 2020

除了傳輸的文件之外,是否可以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*
...

引用自:https://unix.stackexchange.com/questions/608976