将命令行工具的输出作为命令行参数通过管道传输到脚本

发布于 2024-12-21 18:18:02 字数 137 浏览 1 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

┾廆蒐ゝ 2024-12-28 18:18:02

试试这个

myscript.rb `hostname -i` file.txt

Try this

myscript.rb `hostname -i` file.txt
软糖 2024-12-28 18:18:02

如果您确实需要使用 xargs,您可以在 echo 字符串中使用反引号,以便指示 shell 应该运行主机名命令:

echo "`hostname -i` file.txt" | xargs myscript.rb

否则,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:

echo "`hostname -i` file.txt" | xargs myscript.rb

Otherwise, cppcoder's answer is the way to go.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文