rysnc同步排除同名文件夹问题

/ 0评 / 1
web目录下有log a b c 文件夹a b下也有log文件夹。排除web下的log文件夹和b下的log文件夹

使用--exclude-from
--exclude-from=/etc/rsyncd/exclude.txt

cat /etc/rsyncd/exclude.txt
/log
/b/log

#前面的斜杠得带上。

rsync -avz --delete --force --exclude-from=/etc/rsyncd/exclude.txt --password-file=/etc/rsyncd/rsync.password /data/web/ www@192.168.1.5::web

发表评论

邮箱地址不会被公开。 必填项已用*标注