Skip to content

Instantly share code, notes, and snippets.

@DrJeff
Forked from egel/get-gravatar-image.sh
Created February 14, 2017 06:06
Show Gist options
  • Save DrJeff/31e19f986f1313f40a1b1084bb1ac19a to your computer and use it in GitHub Desktop.
Save DrJeff/31e19f986f1313f40a1b1084bb1ac19a to your computer and use it in GitHub Desktop.
Download Gravatar image for an email address
SIZE=500
EMAIL="[email protected]"
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