海量文件快速复制(断点续传+验证+快速)

# 本地
rsync -az --partial --append-verify --info=progress2 --exclude="*.ext" /源目录/ /目标目录/

# 跨机器
rsync -az -e "ssh -T -c [email protected]" --info=progress2 --exclude="*.ext" user@remote:/源目录/ /本地目录/

你可能感兴趣的:(运维,linux)