在命令行中運行下面命令,-e的意思是,把後面的字符串看成腳本執行ruby
ruby -e "print 'hello'"
在命令行輸入irbspa
hello worldxingoo@xingoo-Lenovo:~/workspace/RubyTest$ irb irb(main):001:0> p "hello" "hello" => "hello" irb(main):002:0> p "中文hello" "中文hello" => "中文hello" irb(main):003:0> eixt
xingoo@xingoo-Lenovo:~/workspace/RubyTest/KittyRuby$ ruby hello.rb hello world
hello.rb中的內容:命令行
print "hello world"