使用cut,grep,xargs lynx克隆用户的所有仓库
Hujiuxiang
・1 分钟阅读
使用lynx克隆用户的所有仓库
lynx -dump -nonumbers https://github.com/USER?tab=repositories|grep '/USER/'|cut -d'/' -f1,2,3,4,5|uniq|xargs -L1 git clone
https://wuseman.github.io/wcloner/