Created
June 25, 2009 04:49
-
-
Save jpf/135688 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
| # input: email address in pasteboard. | |
| # output: url for gravatar of that email address to pasteboard | |
| # (wavatar default if no gravatar exists) | |
| md=$(echo -n `pbpaste` | md5); echo "http://gravatar.com/avatar/${md}?d=wavatar" | pbcopy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment