### content ### Command ``` for i in `gh repo list -L 500 --json nameWithOwner | jq -r ".[].nameWithOwner"`; do echo $i; gh repo clone $i; done; ``` ### Notes * Uses the [GitHub CLI](https://cli.github.com) * Increase the `list` limit (`-L`) to 500 from the default (30) * Request only the `nameWithOwner` field e.g. `appwiz/appwiz.github.io`. The `name` field provides the repo name only e.g. `appwiz.github.io`.
content
Command
Notes
listlimit (-L) to 500 from the default (30)nameWithOwnerfield e.g.appwiz/appwiz.github.io. Thenamefield provides the repo name only e.g.appwiz.github.io.