使用bash从先前的输出流构建几个命令

时间:2019-10-22 15:18:53

标签: bash xargs git-clone

我有一个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

我该怎么办? 谢谢

1 个答案:

答案 0 :(得分:0)

我做到了 xargs -n1 git clone