bash – 将多行STDIN输入提供给命令

前端之家收集整理的这篇文章主要介绍了bash – 将多行STDIN输入提供给命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个输出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):
<whatever your command/output is> | while read line; do echo $line; done

其中echo是您的命令,并使用$line作为每行的输出,您可以根据需要进行调整.

原文链接:https://www.f2er.com/bash/385327.html

猜你在找的Bash相关文章