Skip to content

Instantly share code, notes, and snippets.

@hachesilva
Last active April 30, 2024 14:22
Show Gist options
  • Save hachesilva/226d58a08b63c49fff79c741fb4c3f92 to your computer and use it in GitHub Desktop.
Save hachesilva/226d58a08b63c49fff79c741fb4c3f92 to your computer and use it in GitHub Desktop.
Find the most frequent senders in your Gmail account
# Source: https://ryanfb.github.io/etc/2019/08/26/finding_the_most_frequent_senders_in_your_gmail_account.html
# Download a copy of your gmail account from https://takeout.google.com/
grep '^From:' ~/Downloads/YOUR_TAKEOUT_FILE.mbox | cut -d'<' -f2 | tr -d '>' | sort | uniq -c | sort -rn > gmail-frequent-senders.txt
@hachesilva
Copy link
Author

@leodevbro Awesome, thanks

@leodevbro
Copy link

Feel free to reach me any time with any questions, comments and so on.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment