如何从命令行在 ruby​​ 中打开 STDOUT.sync

发布于 2024-12-06 19:16:34 字数 169 浏览 0 评论 0原文

我有调用 ruby​​ 脚本并监视 STDOUT 的 Objective-C 代码。但是,默认情况下,ruby 似乎并不同步 STDOUT,因此我需要将 STDOUT.sync = true 放在脚本的开头才能在发生时查看输出。

调用 ruby​​ 脚本时可以将其作为命令行选项吗?

I have objective-C code that calls ruby scripts and monitors STDOUT. However, ruby does not seem to synchronise STDOUT by default, so I need to put STDOUT.sync = true at the beginning of the script to see output as it happens.

Can I do this as a command line option when calling a ruby script?

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

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

发布评论

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

评论(1

山色无中 2024-12-13 19:16:34

您可以在脚本之前创建一个需要的安装文件。然后使用 -r 标志调用 ruby​​:

ruby -r "$HOME/.rubyopts.rb" myscript.rb

您还可以设置环境变量 RUBYOPT 以在每次运行 ruby​​ 时自动包含该文件:

export RUBYOPT="-r $HOME/.rubyopts.rb"

You can create a setup file to require before your script. Then call ruby with the -r flag:

ruby -r "$HOME/.rubyopts.rb" myscript.rb

You can also set the environment variable RUBYOPT to automatically include that file every time you run ruby:

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