Skip to content

Instantly share code, notes, and snippets.

@dcarley
Created July 28, 2016 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcarley/1b1f4eaaeff72b7b687e14d50bc7c132 to your computer and use it in GitHub Desktop.
Save dcarley/1b1f4eaaeff72b7b687e14d50bc7c132 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -eu
user=$1
size=128
url=$(curl https://api.github.com/users/${user} | jq -r '.avatar_url')
wget -O "${user}.jpg" "${url}&s=${size}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment