0

我想使用 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 位

4

1 回答 1

0

只需使用 rclone move:https ://rclone.org/commands/rclone_move/

 If it exists: move dropbox:test3 to dropbox:test4
 If it exists: move dropbox:test2 to dropbox:test3
 If it exists: move dropbox:test to dropbox:test2
 copy "/root/test/file" to "dropbox:test"
于 2020-03-15T02:16:30.003 回答