Skip to content

Instantly share code, notes, and snippets.

@serkanh
Last active February 27, 2019 13:49
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 serkanh/382bbf454a123214d02681294a1348ad to your computer and use it in GitHub Desktop.
Save serkanh/382bbf454a123214d02681294a1348ad to your computer and use it in GitHub Desktop.
search user owned repos excluding forks.
curl https://api.github.com/users/serkanh/repos\?per_page\=1000 | jq '.[] | select(.fork==false) | .html_url'
curl https://api.github.com/users/serkanh/repos\?per_page\=1000 | jq '.[] | select(.fork==false and .language=="JavaScript") | .html_url'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment