从 ruby​​ 脚本执行 shell 脚本

发布于 2024-12-19 04:06:07 字数 196 浏览 0 评论 0原文

我有以下内容:

_shellScript = "../Dependency/test.sh"
exec 'sh #{_shellScript}'

但是当我执行 ruby​​ 脚本时,它最终会出现 shell 提示符,而不是执行位于变量 _shellScript 中的脚本。

任何想法将不胜感激!

I have the following:

_shellScript = "../Dependency/test.sh"
exec 'sh #{_shellScript}'

But when I go to execute the ruby script it ends me up at a shell prompt instead of executing the script that is located within the variable _shellScript.

Any ideas would be appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

幼儿园老大 2024-12-26 04:06:07

在 Ruby 中,exec 结束 Ruby 进程并将 shell 传递给指定的子进程。如果您需要将 test.sh 的所有输出提供给控制台,则需要 system("sh #{_shellScript}")。如果您需要通过 stdin 和 stdout 提供数据并接收数据,请查看 popen

In Ruby, exec ends the Ruby process and passes the shell to the child specified. If you need to give all of test.sh's output to your console, you want system("sh #{_shellScript}"). If you need to give data and receive it through stdin and stdout, look at popen.

旧话新听 2024-12-26 04:06:07

只需尝试以下行:

%x[#{_shellScript}]

Just try the following line:

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