我有一个bash命令,可以输出几个存储库URL
https://repos.com/abc
https://repos.com/def
https://repos.com/ghi
我想通过这些URL来构建几个git clone命令,例如它执行的命令:
git clone https://repos.com/abc
git clone https://repos.com/def
git clone https://repos.com/ghi
我该怎么办? 谢谢
答案 0 :(得分:0)
我做到了
xargs -n1 git clone