#统计s3 桶使用量
aws s3 ls --summarize --human-readable --recursive s3://xxx/
#清除s3 桶里面的所有文件
aws s3 rm s3://xxx --recursive
#删除s3 桶
aws s3api delete-bucket --bucket xxx
#本地上传文件到s3
aws s3 cp db s3://xxx/mongo-tp/db --recursive
#统计s3 桶使用量
aws s3 ls --summarize --human-readable --recursive s3://xxx/
#清除s3 桶里面的所有文件
aws s3 rm s3://xxx --recursive
#删除s3 桶
aws s3api delete-bucket --bucket xxx
#本地上传文件到s3
aws s3 cp db s3://xxx/mongo-tp/db --recursive