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.
我有一个由 Unix 命令编写的 shell 脚本,现在我想在 Ruby 命令提示符窗口上运行这个脚本文件 (*.sh)。有人请指导我解决方案吗?非常感谢。
使用反引号或%x{...}语法来执行外部程序:
%x{...}
output = %x{./tests.sh}
见http://www.ruby-doc.org/core-1.9.3/Kernel.html#method-i-60