Clone all public user repositories with bash

Linux
<pre><code>USER=YOURUSERNAME; PAGE=1 curl https: //api.github.com/users/$USER/repos?page=$PAGE&amp;per_page=100 | grep -e 'git_url*' | cut -d \ -f 4 | xargs -L1 git clone </code></pre> <p>From https: //stackoverflow.com/questions/19576742/how-to-clone-all-repos-at-once-from-github</p>

© 2026 Code0x378