Skip to content

Instantly share code, notes, and snippets.

@cam8001
Created February 5, 2019 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cam8001/c0b4a4d86f073dad317244b6acec98bf to your computer and use it in GitHub Desktop.
Save cam8001/c0b4a4d86f073dad317244b6acec98bf to your computer and use it in GitHub Desktop.
Remove all s3 buckets in AWS CLI
#!/bin/bash
aws s3 ls | cut -d" " -f 3 | xargs -I{} aws s3 rb s3://{} --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment