mirror of
https://github.com/m1ngsama/automa.git
synced 2025-12-24 10:51:20 +00:00
5 lines
122 B
Bash
5 lines
122 B
Bash
# rely on github-cli
|
|
|
|
gh repo list myorgname --limit 4000 | while read -r repo _; do
|
|
gh repo clone "$repo" "$repo"
|
|
done
|