rsync 同步文件
rsync -avz roo@192.168.4.12:/home/a ./a --exclude "data"
exclude 去掉/a/data 文件夹
排除多个文件
rsync -avz --delete /home/wwwroot/yswifi/ root@115.29.19.85:/home/wwwroot/test --exclude "home/wwwroot/exclude.txt"
exclude.txt写法为一排一排的,例如:
static
yswifi.com
ysapi
yswifi/Conf/config.php
注:exclude.txt文件的写法路径在"/home/wwwroot/yswifi/" 在他的路径下面
--exclude-from 为多行
--exclude 为一行