I am using s3cmd to backup my files from s3, I run the following command from my terminal to sync between my files in my_bucket and my local folder called workfiles which is in the home directory
s3cmd sync s3://my_bucket/ /home/mody/workfiles/ --delete-removed
This is a manual method and it will be painful if the volume is big, so I am wondering if it's possible to do some kind of automatic backup to a server like digitalocean or some other cloud service, and how to do that ? any code snippet will be appreciated! Thanks