我有以下文件:
1/2/abc.txt
1/2/def.txt
1/1/abc.txt
2/1/abc.txt
2/2/def.txt
3/1/hij.txt
我想复制所有abc.txt
文件并保留目录树。我尝试了以下命令:
rsync -R -P -a -m --include='*/*/abc.txt' remote@server:/target/directory
但这不会复制任何文件。有任何想法吗?将不胜感激。
兄弟,
我有以下文件:
1/2/abc.txt
1/2/def.txt
1/1/abc.txt
2/1/abc.txt
2/2/def.txt
3/1/hij.txt
我想复制所有abc.txt
文件并保留目录树。我尝试了以下命令:
rsync -R -P -a -m --include='*/*/abc.txt' remote@server:/target/directory
但这不会复制任何文件。有任何想法吗?将不胜感激。
兄弟,
尝试一下
rsync -R -P -a -m --include='*/' --include='abc.txt' --exclude='*' source/ remote@server:/target/directory
,其中添加的source/
是源父目录。最好指定源父目录的实际路径(相对或绝对),例如
source/
或/full/path/to/source
。该-a
选项意味着-r
递归子目录。它比依赖 shell glob 好得多,*
后者可以扩展到当前工作目录下的多个其他目录并产生意想不到的结果。rsync
当只有目标目录而没有源目录时,您对如何不抱怨感到困惑。这样它就可以支持扩展为空的用shopt -s nullglob
例*
。但如果您只添加源目录,它不仅会复制所需的文件,还会复制其他文件。rsync
的 include 语法很奇怪。您需要--exclude='*'
在您之后添加--include='*/*/abc.txt'
,以使其仅复制您想要的文件。但这会导致无法复制任何内容,因为目录被排除在外,因此您需要使用--include='*/'
. 空目录被正确排除,因为您有-m
.上述命令的较短版本是
rsync -RPamf '+ abc.txt' -f 'H,! */' source/ remote@server:/target/directory
.