Skip to content

Instantly share code, notes, and snippets.

@tcely
Created May 6, 2019 20:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tcely/cf471065b1a7dcd1c6de4e4bdfc4aaa6 to your computer and use it in GitHub Desktop.
Save tcely/cf471065b1a7dcd1c6de4e4bdfc4aaa6 to your computer and use it in GitHub Desktop.
#!/bin/sh
github_email_to_login() {
local url='https://api.github.com/search/users'
local filter='.items|.[]|select(.type == "User")|.login'
local email="${1}"
curl -sSL "${url}?q=in:email+${email}" | jq -r "${filter}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment