teldrive / db_backup.sh
divyam234
initial commit
1b7b318
raw
history blame contribute delete
155 Bytes
#!/bin/bash
interval=1200
while true; do
sleep $interval
/app/rclone copy --config /app/rclone.conf "/app/teldrive.db" "$REMOTE:teldrive/"
done