Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arbabnazar/de8eee6ecf25384f42e88126cdc732d2 to your computer and use it in GitHub Desktop.
Save arbabnazar/de8eee6ecf25384f42e88126cdc732d2 to your computer and use it in GitHub Desktop.
aws s3 ls s3://my-prod/directory --recursive --human-readable --summarize --profile aws-profile
aws s3 ls --summarize --human-readable --recursive s3://my-prod/* --profile aws-profile
aws s3 ls s3://my-prod --recursive --human-readable --summarize --profile aws-profile
aws s3 ls --profile aws-profile s3://my-prod --recursive | grep -v -E "(Bucket: |Prefix: |LastWriteTime|^$|--)" | awk 'BEGIN {total=0}{total+=$3}END{print total/1024/1024" MB"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment