mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
7 lines
162 B
Bash
7 lines
162 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for PAGEID in `seq 1 5`
|
||
|
do
|
||
|
curl "https://api.github.com/search/repositories?q=_ynh&sort=updated&per_page=100&page=$PAGEID" > data/$PAGEID.json
|
||
|
done
|