Skip to content

Instantly share code, notes, and snippets.

@arelra
Created April 8, 2016 15:34
Show Gist options
  • Save arelra/e464566b900157195e7624c7f303b7e0 to your computer and use it in GitHub Desktop.
Save arelra/e464566b900157195e7624c7f303b7e0 to your computer and use it in GitHub Desktop.
s3 count awk
aws s3 ls s3:// | awk '{ count +=1; size += $3 } END { print "Count:", count, "Size:", size, "bytes" }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment