mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-11 03:38:40 +00:00
7 lines
199 B
Bash
7 lines
199 B
Bash
#!/bin/bash
|
|
|
|
CNTX="users"; NAME="Karaka-Management"; PAGE=1
|
|
curl "https://api.github.com/$CNTX/$NAME/repos?page=$PAGE&per_page=100" |
|
|
grep -e 'clone_url*' |
|
|
cut -d \" -f 4 |
|
|
xargs -L1 git clone |