Automatically sync two Amazon S3 buckets, besides s3cmd?

后端 未结 4 1248
逝去的感伤
逝去的感伤 2021-02-09 05:48

Is there a another automated way of syncing two Amazon S3 bucket besides using s3cmd? Maybe Amazon has this as an option? The environment is linux, and every day I would like to

4条回答
  •  遥遥无期
    2021-02-09 06:38

    You could use the standard Amazon CLI to make the sync. You just have to do something like:

    aws s3 sync s3://bucket1/folder1 s3://bucket2/folder2
    

    http://aws.amazon.com/cli/

提交回复
热议问题