You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sqlite3 -csv "$1" "SELECT mail_user, COUNT(*), SUM(LENGTH(mail_data)) AS data FROM mailbox GROUP BY mail_user ORDER BY data DESC;" | while IFS=, read user mails data; do printf "User %s has %s mails totaling %s bytes\n" "$user" "$mails" "$data";