paladin/copy.sh

9 lines
205 B
Bash
Raw Normal View History

2025-01-12 08:43:27 +00:00
#!/bin/bash
for i in 1 2; do
curl "https://git.bivouac.wiki/api/v1/repos/search?limit=50&page=$i" | jq -r ".data[].ssh_url" >> bivouac.txt
done
cat bivouac.txt | while read line; do
git clone $line
done