Skip to content

Instantly share code, notes, and snippets.

@guedressel
Created December 5, 2014 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guedressel/524f30b1296add6f9a4f to your computer and use it in GitHub Desktop.
Save guedressel/524f30b1296add6f9a4f to your computer and use it in GitHub Desktop.
List sizes of Zimbra Mailboxes
#> zmaccts | grep '@' | awk -F" " '{print $1}' > /tmp/accounts
#> for account in $(< /tmp/accounts); do size=$(zmmailbox -z -m $account gms); echo $account $size; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment