Revisions
-
nikhita created this gist
Feb 10, 2021 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ #!/usr/bin/env bash # This script generates a list of repos in a GitHub org. # The list can be pasted directly to a Microsoft Excel sheet. # You will need to use your GitHub username in the username field. # Update the page=N number to get the complete list of repos. curl --silent --user "username" "https://api.github.com/orgs/vmware/repos?page=1&per_page=100" | npx jq '.[].html_url' | while read repo do echo "=Hyperlink("$repo","$repo")" done