Clone all public user repositories with bash

Linux
USER=YOURUSERNAME; PAGE=1curl https: //api.github.com/users/$USER/repos?page=$PAGE&per_page=100 |
  grep -e 'git_url*' |
  cut -d \ -f 4 |
  xargs -L1 git clone

From https: //stackoverflow.com/questions/19576742/how-to-clone-all-repos-at-once-from-github

© 2024 Code0x378