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.
我想使用 java 在终端中启动 irb(交互式 Ruby Shell),然后在发生特定事件时在已打开的 irb shell 上执行不同的命令。我已经尝试过Runtime.exec()方法,但它仅在终端或命令提示符上执行命令,并且无法在 irb shell 中执行命令。此外,每次它在终端的新实例而不是同一实例上执行命令时。我想在同一个终端实例上执行多个命令,而不是新创建的终端实例。
Runtime.exec()
请建议。提前致谢。