From 96b3cfa504127de929df32e4a8ee48a096ba3c5d Mon Sep 17 00:00:00 2001 From: risotto Date: Sun, 12 Jan 2025 01:43:27 -0700 Subject: [PATCH] old notes --- copy.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 copy.sh diff --git a/copy.sh b/copy.sh new file mode 100644 index 0000000..4f239af --- /dev/null +++ b/copy.sh @@ -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 \ No newline at end of file