Skip to content

Instantly share code, notes, and snippets.

@troglotit
Forked from egel/get-gravatar-image.sh
Created November 24, 2015 21:39
Show Gist options
  • Save troglotit/359b25ee030cc5399928 to your computer and use it in GitHub Desktop.
Save troglotit/359b25ee030cc5399928 to your computer and use it in GitHub Desktop.
Download Gravatar image for an email address
SIZE=500
EMAIL="sajkoooo@gmail.com"
curl "http://www.gravatar.com/avatar/$(echo -n ${EMAIL} | md5sum | awk '{print $1}')?s=${SIZE}" > gravatar.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment