Skip to content

Instantly share code, notes, and snippets.

@jfcarr
Created July 4, 2017 14:17
Show Gist options
  • Save jfcarr/61880bd75ae550601c5c32f41d38d57b to your computer and use it in GitHub Desktop.
Save jfcarr/61880bd75ae550601c5c32f41d38d57b to your computer and use it in GitHub Desktop.
Show subject of each unread Gmail message.
#!/bin/bash
curl -u johndoe:mypassword --silent "https://mail.google.com/mail/feed/atom" | tr -d '\n' | awk -F '<entry>' '{for (i=2; i<=NF; i++) {print $i}}' | sed -n "s/<title>\(.*\)<\/title.*name>\(.*\)<\/name>.*/\2 - \1/p"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment