#Get Gravatar image using command line(Mac OS X only)
Gravatar image download url
http://www.gravatar.com/avatar/HASH
Get default image
curl -o yourname.png http://www.gravatar.com/avatar/$(md5 -q -s [email protected])
Get image with specified formart
curl -o yourname.jpg http://www.gravatar.com/avatar/$(md5 -q -s [email protected]).jpg
Get image with specified size (size = 200 pixel, height and width are both 200 pixel)
curl -o yourname200.png http://www.gravatar.com/avatar/$(md5 -q -s [email protected])?s=200
More info: Gravatar document