We are working on a project where we need to display all the projects of a person in his repository on GitHub account.
Can anyone suggest, how can I display the na
If you have jq installed, you can use the following command to list all public repos of a user
curl -s https://api.github.com/users//repos | jq '.[]|.html_url'