old notes

This commit is contained in:
Risotto Bias 2025-01-12 01:43:27 -07:00
parent cc9061b003
commit 96b3cfa504

9
copy.sh Normal file
View file

@ -0,0 +1,9 @@
#!/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