Check your unread messages in Gmail, from terminal

$ curl -u username --silent "https://mail.google.com/mail/feed/atom" | perl -ne 'print "\t" if //; print "$2\n" if /<(title|name)>(.*)<\/\1>/;'


replace username with your gmail username.

This command will promt for your password, enter it and view your unread in your gmail account .

No comments:

Post a Comment