我有两个带有文件夹列表的文件。我想将具有相对路径的文件夹同步到目标(排除文件中的文件夹除外)。
@for ($i = $delegateGroup; $i < count($delegateGroup); $i++)
<td> {{ $delegateGroup[i][0] </td>
@endfor
我尝试使用$ cat include.txt
/home/user
/etc
/data/app
/boot
$ cat exclude.txt
/data/app/temp
/etc/aide
和--include-from
,但似乎无法弄清楚。
这似乎是同步文件夹,而不是文件:
--files-from
最终,我想同步到rsync -av --files-from=include.txt / /destination
并使文件夹结构如下:
/destination
答案 0 :(得分:1)
只需添加-r
和--exclude-from
选项,您应该会很好:
rsync -av -r --files-from=./include.txt --exclude-from=./exclude.txt / /destination/