我有一个输出git repository SSH URL的脚本,如下所示:
git@example.com:namespace/project.git git@example.com:another_namespace/some_other_project.git
我想为每一行运行命令git clone(或其他命令).
我尝试将它连接到xargs,但我要么输出一行,要么多行输入转储到单个命令.
如何通过管道在每一行上运行任意命令?
事实证明,你可以在bash中使用while循环(改编自
this answer):
原文链接:https://www.f2er.com/bash/385327.html<whatever your command/output is> | while read line; do echo $line; done
其中echo是您的命令,并使用$line作为每行的输出,您可以根据需要进行调整.