-
-
Save learningjs/b2d1181a51ef1dc8a2fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USER=your_username | |
PASS=your_passwd | |
COUNT=`curl -su $USER:$PASS https://mail.google.com/mail/feed/atom || echo "<fullcount>unknown number of</fullcount>"` | |
COUNT=`echo "$COUNT" | grep "<fullcount>" | sed -e s/"<fullcount>"// -e s/"<\/fullcount>"//` | |
echo $COUNT | |
if [ "$COUNT" != "0" ]; then | |
if [ "$COUNT" = "1" ];then | |
WORD="mail"; | |
else | |
WORD="mails"; | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment