作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在运行一个吐出 IP 的命令,我需要在它出现时将它提供给位于特定位置的另一个程序,我该怎么做?
$ command1 | command2 -c configfile -i "$1" status
“$1”是我希望 command1 的结果去的地方。
谢谢。
最佳答案
xargs
是您的工具
$ command1 | xargs -I {} command2 -c configfile -i {} status
你可以多次引用参数,例如
$ echo this | xargs -I {} echo {}, {}, and {}
this, this, and this
根据上一条评论,也许您想做这样的事情
$ var=$(command1) && command2 "$var" ... | command3 "$var" ...
关于bash - 如何将第一个命令的输出通过管道传递到下一个命令的特定位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42631070/
我是一名优秀的程序员,十分优秀!