如何以点开头的rsync文件夹?

时间:2011-11-06 09:40:56

标签: directory rsync

我正在尝试同步一个maildir目录,该maildir目录中的某些文件夹包含以“dot”开头的目录

.Archive/
.Sent Items/

我尝试使用以下

$ rsync -pogutr --exclude="." --exclude=".." .*  /home/folder1/mail/domain/user1/ /home/folder2/mail/domain --progress
$ rsync -pogutr --exclude="../" /home/folder1/mail/domain/user1/.*  /home/folder2/mail/domain/ --progress
$ rsync -pogutr --include=".*" /home/folder1/mail/domain/user1  /home/folder2/mail/domain/ --progress

所有这些都会将/home/folder1/mail/domain/中的其他子目录同步到/home/folder2/mail/domain/user1/目录。

例如,如果/home/folder1/mail/domain/包含user1,user2和user3的子目录。然后user1,user2和user3的所有内容都将在/home/folder2/mail/domain/user1/目录

3 个答案:

答案 0 :(得分:0)

我伪造了一个包含文件的点文件夹的邮件目录,默认情况下它正确同步。

$ rsync --recursive --verbose maildir/ maildir-backup
sending incremental file list
created directory maildir-backup
./
.Archive/
.Archive/1
.Archive/2
.Archive/3
.Sent Items/
.Sent Items/bar
.Sent Items/baz
.Sent Items/foo

sent 481 bytes  received 182 bytes  1,326.00 bytes/sec
total size is 0  speedup is 0.00

我甚至尝试了你正在使用的额外标志(保留所有者,组,时间,权限等)

$ rsync -pogutr --verbose maildir/ maildir-backup
sending incremental file list
created directory maildir-backup
./
.Archive/
.Archive/1
.Archive/2
.Archive/3
.Sent Items/
.Sent Items/bar
.Sent Items/baz
.Sent Items/foo

sent 497 bytes  received 182 bytes  452.67 bytes/sec
total size is 0  speedup is 0.00

你只是不想或不想排除"这个"文件夹或父级。这些不包含在任何路径中。

--exclude="." --exclude=".."

答案 1 :(得分:0)

使用2个rsync命令:1个普通命令和1个点文件夹。并指定点并逃避它。 我用它来迁移到docker-poste并在我的docker主机上运行它:

rsync -e ssh -v -r -u root@10.10.0.7:/home/benny/Maildir/* /mnt/user/docker/poste/data/domains/example.com/benny/Maildir/
rsync -e ssh -v -r -u root@10.10.0.7:/home/benny/Maildir/\.* /mnt/user/docker/poste/data/domains/example.com/benny/Maildir/

答案 2 :(得分:-1)

尝试使用unison而不是rsync。此外,它会更快地同步。