nohup rsync -avz --progress --update --include='*/' --include='.*' --bwlimit=1000 agent/ /test/ > /root/file.log 2>&1 &
这条命令意思是用rsync 来进行同步
--progress 显示详细输出
--update 增量同步
--include='*/' --include='.*' 同步隐藏目录以及隐藏文件
--bwlimit=1000 限速1000KB标签:rsync,同步,--,bwlimit,include,隐藏 From: https://www.cnblogs.com/libruce/p/17314641.html