Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 RVM 安装中使用了以下 hashbang 命令。如何将-w参数传递给 ruby 解释器?
-w
#!/usr/bin/env ruby
谢谢。
我建议设置RUBYOPT环境变量。通过这种方式,您不必编辑可执行文件。
RUBYOPT
RUBYOPT="-w $RUBYOPT"
根据this reference,您可以在shebang之外使用单独的声明:
#! /usr/bin/env ruby $VERBOSE=true