2 lines
75 B
Bash
2 lines
75 B
Bash
#!/bin/sh
|
|
aws s3 ls | cut -d" " -f 3 | xargs -I{} aws s3 rb s3://{} --force |
#!/bin/sh
|
|
aws s3 ls | cut -d" " -f 3 | xargs -I{} aws s3 rb s3://{} --force |