我想使用 rclone 在我的保管箱上进行每日备份,它适用于 cron 但我想让它像这样今天我的保管箱上有文件夹测试,明天我想要文件夹 test1 和下一个明天文件夹 test2 而不是覆盖测试文件夹,这样我就可以得到备份从昨天的 4 天开始(我不知道你们是否理解我,我的英语不是很完美,抱歉)
脚本代码(.sh):
#!/bin/sh
if [ -z "$STY" ]; then
exec screen -dm -S backup -L -Logfile '/root/logs/log' /bin/bash "$0"
fi
rclone copy --update --verbose --transfers 30 --checkers 8 \
--contimeout 60s --timeout 300s --retries 3 \
--low-level-retries 10 --stats 1s \
"/root/test/file" "dropbox:test"
exit
Ubuntu 18.10 64 位