Multiple RCLONE instances in one script simultaneously I'm trying to write a batch file that can kick off multiple rclone scripts to run at the same time I use RCLONE for clients to offload their files once a day to an offsite backup target I also like to see what the script is doing so I have -P flag
Limiting the number of simultaneous instances of a program . . . If your script is not the only program calling rclone, then would need to intercept all calls - instead of putting this code in your program, could replace rclone by wrapper that implements the parallelism constraint as above and then calls the real program
Prevent multiple rclone processes from running at the same . . . Causing two same rclone processes to be running at the same time, which may mess up things It's possible to prevent theses circumstances via some naïve approaches, like running "killall rclone" in the beginning of cron job script, or use some more sophisticated shell script
BATCH script for Rclone with email notification · GitHub REM --include * {vbk} --exclude * {vib,vbm,bco} SET RCLONE_OPT_SEC= REM --bwlimit "06:00,900 18:00,1100 20:00,off" SET RCLONE_OPT_BWL= SET RCLONE_OPTIONS= --config= %RCLONE_CFG_PATH% %RCLONE_OPT_PRM% %RCLONE_OPT_SEC% %RCLONE_OPT_BWL% SETLOCAL REM run rclone job %RCLONE_EXE_PATH% sync E:\BACKUPS gd: Veeam %RCLONE_OPTIONS% REM if exist log f
How to send notifications for RCLONE RClone does not have built in notifications, however you can configure a script to send an email notification (When installed on Windows) and setup a task to do it automatically RClone generates logs in a raw TXT file, so the first thing is convert it into an HTML file to send it later using powershell
Rclone mount at startup : r rclone - Reddit You need multiple scripts because when you launch each command, it doesn't ever return control to the top level script Create an empty text file called mountrclone bat which is what will launch the individual scripts that actually start the mounts
Automated Backups with cron and RClone - DEV Community You can have multiple RClone configurations and this allows you to sync or copy files, not just from your computer to the cloud, but from one cloud to another Just like this: rclone sync -v --create-empty-src-dirs mygdrive: Work anothergdrive: Work