Cody Blog

用 awscli 刪除 AWS 的 Bucket

最近需要把 AWS 上面的 bucket 裡面的大量檔案刪除,步驟如下:

安裝 awscli

$ pip install awscli

設定 AWS 的 Configuration

$ aws configure

Empty bucket

aws s3 rm s3://<YOUR_BUCKET_NAME> --recursive

Delete bucket

aws s3 rb s3://<YOUR_BUCKET_NAME> --force --region ap-northeast-1

AWS

Related Posts

Comments