Closed. This question is off-topic 。它目前不接受答案。
想改善这个问题吗? Update the question 所以它是堆栈溢出的 on-topic。
9年前关闭。
Improve this question
将仅使用 cmd1 输出作为参数调用 cmd2 一次。我想要的是用每一行 cmd1 输出作为参数一一调用 cmd2 。也许看起来像:
我知道我可以自己写一个,只是想知道是否已经有内置支持?
应该这样做。
想改善这个问题吗? Update the question 所以它是堆栈溢出的 on-topic。
9年前关闭。
Improve this question
cmd1 | cmd2
将仅使用 cmd1 输出作为参数调用 cmd2 一次。我想要的是用每一行 cmd1 输出作为参数一一调用 cmd2 。也许看起来像:
cmd1 | map cmd2
我知道我可以自己写一个,只是想知道是否已经有内置支持?
最佳答案
for i in `cmd1`; do cmd2 $i; done
应该这样做。
关于bash - bash中有管道图吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5415595/
10-12 17:50