rsync 文件同步
韦林
yum install rsync
注意,传输的双方都必须安装 rsync
rsync 用法教程
<https://www.ruanyifeng.com/blog/2020/08/rsync.html>
rsync -aWPu /www/wwwroot/html/upload/data/attachment/forum
root@111.67.193.91
:/www/wwwroot/html/upload/data/attachment/
远程同步
rsync -aWPu
root@111.67.193.91
:/www/wwwroot/html/upload/ /www/wwwroot/html/upload/
本地同步并排除目录data
rsync -aWPu --exclude 'data/*' /www/wwwroot/html/upload/ /www/wwwroot/upload/