Created
September 1, 2021 09:54
-
-
Save arbabnazar/de8eee6ecf25384f42e88126cdc732d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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