我想使用IRB运行脚本然后给我一个交互式提示。我在Python中使用python -i xy.py
执行此操作,但irb xy.rb
在执行后退出。
> python --help
-i When a script is passed as first argument or the -c option is
used, enter interactive mode after executing the script or the
command
答案 0 :(得分:9)
irb -r xy.rb
在提供正常的IRB提示之前,它只需要提到的文件。