paladin/copy.sh
2025-01-12 01:43:27 -07:00

9 lines
No EOL
205 B
Bash

#!/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