2024-09-01
Linux运维
00

利用github的api工具,

首先拿到用户名为kevin的所有仓库的url:

bash
curl "https://api.github.com/users/kevin/repos?per_page=100&&page=1" | grep -w clone_url >clone.txt

过滤一下:

bash
grep -o 'https://[^"]*' clone.txt >new_clone.txt

在txt文件中每一行前面加一个字符串git clone --depth=1 并保存到新的txt文件:

bash
sed 's/^/git clone --depth=1 /' new_clone.txt > last_clone.sh

执行所有指令:

bash
bash last_clone.sh

在这里插入图片描述

如果对你有用的话,可以打赏哦
打赏
ali pay
wechat pay

本文作者:Dong

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!