# 本地数据同步
rsync -avzP --delete --size-only --exclude=".nexus" --chown=200:200 /artifactory-new/android/ /mnt/storage00/android/
# 远程数据同步(预先配置好 ssh 免登录)
rsync -av -e "ssh -p 22" --delete /mnt/nexus-data/* root@10.149.12.14:/mnt/nexus-data/
# 清理 ./android/.nexus 目录下超过 15 天的数据
find ./android/ -path "./android/.nexus/**/*" -prune -o -mtime -14 -print