rsync include-from文件递归

时间:2016-07-08 23:49:11

标签: linux bash unix rsync

我想只获得新的或更改的文件列表,结果上只有很少的过滤器。 我的所有新文件或更改的文件都是:

>f+++++++++ dsadcache.txt
>f+++++++++ root.svn
>f+++++++++ txt-file-in-root.txt
>fcsT...... wp-config.php
cd+++++++++ cache/
>f+++++++++ cache/fileincac.txt
>f+++++++++ cache/fileincache.txt
>f+++++++++ wp-content/inside.svn
>f+++++++++ wp-content/inside.txt
>f+++++++++ wp-content/object-cache.php

最终结果如下:

>f+++++++++ txt-file-in-root.txt
>fcsT...... wp-config.php   
>f+++++++++ wp-content/inside.txt

当我尝试使用此规则包含文件时:

- *cache*
+ *.html
+ *.txt
+ *.js
+ *.php
+ *.jpg
+ *.jpeg
+ *.png
+ *.bmp
+ *.gif
+ *.tif
+ *.tiff
+ *.ico
+ *.json
+ *.xml
- *

过滤器工作但结果不是递归的

>f+++++++++ txt-file-in-root.txt
>fcsT...... wp-config.php

缺失:

>f+++++++++ wp-content/inside.txt

我的命令是:

 rsync -nrci  --include-from="file" source/ destination

编辑:

让我解释一下获胜的答案:

以下是rsync进程的路径顺序:

 dsadcache.txt
 txt-file-in-root.txt
 cache/
 cache/fileincac.txt
 cache/fileincache.txt
 wp-content/
 wp-content/inside.txt   
 wp-config.php

不包括

filter='+ */'

目录

cache/
wp-content/

被排除在外。

1 个答案:

答案 0 :(得分:1)

在递归模式下,rsync从上到下访问子目录,因此当rsync检查树的顶层时,wp-content首先与您的规则匹配。由于没有与此目录匹配的包含模式,因此通用排除规则- *将删除它。

根据rsync手册页,实现目标的一种方法是在排除规则之前的任何位置放置+ */,因此在递归操作期间会包含子目录。