Skip to content

Instantly share code, notes, and snippets.

@mchv
Created July 27, 2016 16:46
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save mchv/9dccbd9245287b26e34ab78bad43ea6c to your computer and use it in GitHub Desktop.
Save mchv/9dccbd9245287b26e34ab78bad43ea6c to your computer and use it in GitHub Desktop.
for bucket in $(aws s3api list-buckets --query 'Buckets[*].{Name:Name}' --output text)
do
echo "$bucket:"
region=$(aws s3api get-bucket-location --bucket $bucket --query 'LocationConstraint' --output text | awk '{sub(/None/,"eu-west-1")}; 1')
parts=$(aws s3api list-multipart-uploads --bucket $bucket --region $region --query 'Uploads[*].{Key:Key,UploadId:UploadId}' --output text)
if [ "$parts" != "None" ]; then
IFS=$'\n'
for part in $parts
do
keyname=$(echo $part | awk '{print $1}')
upload_id=$(echo $part | awk '{print $2}')
id_size=$(aws s3api list-parts --upload-id $upload_id --bucket $bucket --key $keyname | grep "Size" | egrep -o '[0-9]+' | awk '{ SUM += $1} END { print SUM }')
echo "size: $id_size bytes"
# uncomment below to delete instead of printing the size
#aws s3api abort-multipart-upload --bucket --key $keyname --upload-id $upload_id
done
fi
done
@Johnsonkdavid
Copy link

$bucket variable is missing from aws s3api abort-multipart-upload --bucket command.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment