rsync -art rsync://地址 目标目录
本地安装rsync 软件
下载\Compressed\cwRsync_4.1.0_kh.zip
.\rsync.exe -vzrt --progress --delete rsync://mirrors.tuna.tsinghua.edu.cn/centos-stream/9-stream/AppStream/x86_64/ /cygdrive/D/centos/X86/app/ 更新源到本地
-v, --verbose 详细模式输出
-z, --compress 在传输过程中进行压缩
-r, --recursive 对子目录以递归模式处理
-t, --times 保留修改时间
-o, --owner 保留所有者(仅限superuser)
-p, --perms 保留权限
-g, --group 保留组
--progress 在传输过程中显示进度
--delete 删除那些DST中SRC没有的文件
linux 环境下 使用 -avrt 参数