rsync – 排除除少数之外的所有目录

前端之家收集整理的这篇文章主要介绍了rsync – 排除除少数之外的所有目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
似乎有很多关于此问题的SF和SO问题,但似乎没有一个符合我的要求.
source_dir/
  some_dir/
  another_dir/
  some_file.PHP
  some_other_file.txt
  include_this_dir/
  include_that_dir/
  yet_another_dir/

所以我想rsync其中两个dirs,而排除其余的.重要的是我们要排除除了这两个目录之外的所有目录,因为可能有其他文件稍后会被添加到source_dir中,并且需要在未明确列出的情况下被排除.

我试过了:

rsync -av --dry-run --delete --exclude="source_dir/*" (or just "*") --include-from="include.txt" source_dir dest_dir

我的include.txt有

include_this_dir/
  include_that_dir/

我还尝试添加

source_dir/

没有快乐.根本没有包含任何东西.

解决方法

一个简单的过滤器应该可以做到.使用适当的示例构建先前的答案 – 明确地包括父(s),以及所有(**)子文件夹和文件.然后排除其他一切.这是filter.txt:
+ /include_this_dir/
+ /include_this_dir/**
+ /include_that_dir/
+ /include_that_dir/**
- /**

使用命令行:

rsync -av --dry-run --filter="merge filter.txt" source_dir/ dest_dir/

会导致:

sending incremental file list
created directory dest_dir
./
include_that_dir/
include_that_dir/somefile.txt
include_that_dir/subdir/
include_this_dir/

sent 202 bytes  received 65 bytes  534.00 bytes/sec
total size is 0  speedup is 0.00 (DRY RUN)
原文链接:https://www.f2er.com/linux/397386.html

猜你在找的Linux相关文章