rsync同步目录到远程服务器

#!/bin/bash # 同步 /data/dbbak 到远程服务器 10.75.174.213:/data/club_dbbak # 使用 rsync + sshpass 实现带密码的自动同步 REMOTE_HOST="10.75.174.213" REMOTE_PO...

定时任务

crontab -e # m h dom mon dow command #0 0 * * * sh /data/certbot/deploy.sh #0 0 * * * sh /data/cleardocker.sh 0 0 * * * /data/sync_dbbak.sh 0 ...