I recently completed copying about 100TB of movies and TV from one server to a temporary backup server via rclone sftp while I redo my storage configuration. I would like to restore the files from the backup to a new machine while transferring the newest media back first based on file modification time. It's going to take a long time to restore all of this and having access to the newest media first would be ideal. Is this possible? I can't figure it out of it is.
So far the best I've been able to come up with is:
rclone copy --transfers 25 --max-age 30d --progress
I figure worst case I can start with something like this then just let it restore as it likes but it's not ideal.
Thanks!