我正在尝试使用 rsync include-from 和 exclude-from 命令来忽略或仅从源中复制列出的文件/目录。该列表位于文本文件中。由于某种原因,该命令不执行。为什么会这样?
代码:
rsync -ar —exclude-from 'exclude-list.txt' source/* destination/
rsync -ar —include-from 'exclude-list.txt' source2/* destination/
在排除列表.txt 中:
file1
file2
/dir1
/dir2