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.
我需要从终端运行几行 Ruby 代码,但找不到所需的参数。
你能解释一下如何做到这一点吗?
如果安装了 Ruby,那么
ruby yourfile.rb
yourfile.rb包含 ruby 代码的文件在哪里。
yourfile.rb
或者
irb
启动交互式 Ruby 环境,您可以在其中键入代码行并立即查看结果。
-e您可以使用以下标志在一行中运行 ruby 命令:
-e
ruby -e "puts 'hi'"
查看手册页以获取更多信息。