Ruby 解释器名称
可能的重复:
如何找到 ruby 解释器?
如何获取当前的在 Ruby 中运行 Ruby 1.8 解释器名称(例如 /usr/bin/ruby
),即传递给 C main()
的 argv[0]
> 功能。我对 $0
不感兴趣,因为这是 .rb
脚本文件的名称。我对 Config::CONFIG 也不感兴趣,因为它是在安装 Ruby 时填充的,但我对它现在运行的位置感兴趣。
假设 /usr/bin/ruby
是 /usr/bin/ruby1.8
的符号链接。如何知道我的 Ruby 脚本是否以 /usr/bin/ruby1.8 myscript.rb
或 /usr/bin/ruby myscript.rb
启动?
Possible Duplicate:
How do I find the ruby interpreter?
How do I get the currently running Ruby 1.8 interpreter name in Ruby (e.g. /usr/bin/ruby
), i.e. the argv[0]
passed to the C main()
function. I'm not interested in $0
, because that's the name of the .rb
script file. I'm also not interested in Config::CONFIG
, because that was filled when Ruby was installed -- but I'm interested in where it is running now
.
Let's suppose /usr/bin/ruby
is a symlink to /usr/bin/ruby1.8
. How do I get to know if my Ruby script has been started as /usr/bin/ruby1.8 myscript.rb
or /usr/bin/ruby myscript.rb
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅如何找到 ruby 解释器?
如果您想要特定于 Ruby 的内容, 信息查看
RUBY_*
常量See How do I find the ruby interpreter?
If you want Ruby specific information check out the
RUBY_*
constants@injekt 的答案有解释器的路径。
以下是如何查找有关配置的详细信息。
Ruby 的配置信息在编译期间存储在 rbconfig.rb 中,因此我们可以看到安装的详细信息。当解释器启动时,该信息被拉入对象,以便我们可以获得值:
@injekt's answer has the path to the interpreter.
Here's how to find the particulars about the configuration.
Ruby's configuration info is stored in rbconfig.rb during compilation so we can see the particulars of the installation. That information is pulled into Object when the interpreter starts so we can get at the values:
以下是仅适用于 Linux 的解决方案:
对于 Ruby 1.8,
ruby.c
定义了VALUE rb_argv0;
,其中包含此信息,但该变量在 Ruby 脚本中不可用。Here is a Linux-only solution:
For Ruby 1.8,
ruby.c
definesVALUE rb_argv0;
which contains this information, but that variable is not available in Ruby scripts.