将命令行工具的输出作为命令行参数通过管道传输到脚本
我想使用 xargs 将我的 IP 地址和特定文件传递给程序。例如,我想要做的是:
echo "(hostname -i 的输出) file.txt" | xargs myscript.rb
执行此操作的最佳方法是什么?谢谢!
I want to pass my IP address and a specific file to a program using xargs. For example, what I want to be able to do is:
echo "(output of hostname -i) file.txt" | xargs myscript.rb
What's the best way to do this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
Try this
如果您确实需要使用 xargs,您可以在 echo 字符串中使用反引号,以便指示 shell 应该运行主机名命令:
否则,cppcoder 的答案就是正确的方法。
If you really need to use xargs, you can use backquotes inside your echo'ed string so as to instruct the shell that it should run the hostname commmand:
Otherwise, cppcoder's answer is the way to go.