利用github的api工具,
首先拿到用户名为kevin的所有仓库的url:
bashcurl "https://api.github.com/users/kevin/repos?per_page=100&&page=1" | grep -w clone_url >clone.txt
过滤一下:
bashgrep -o 'https://[^"]*' clone.txt >new_clone.txt
在txt文件中每一行前面加一个字符串git clone --depth=1 并保存到新的txt文件:
bashsed 's/^/git clone --depth=1 /' new_clone.txt > last_clone.sh
执行所有指令:
bashbash last_clone.sh
本文作者:Dong
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!