Last active
February 27, 2019 13:49
-
-
Save serkanh/382bbf454a123214d02681294a1348ad to your computer and use it in GitHub Desktop.
search user owned repos excluding forks.
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
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