📜  备份软件从特定时间移动文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:18.283000             🧑  作者: Mango

代码示例1
find /path/backups/ -type f -mtime +2 -exec rsync -vPhd -e "ssh -p 512" {} --delete --ignore-existing me@host:/remote/path/server-backups/ \;