从ruby脚本进行终端通话

这个问题在这里已经有了答案:

  • 从Ruby 19调用shell命令的答案

  • 从ruby调用命令最简单的方法是反引号。

    例如,

    def say_hello
        `say hello`
    end
    

    会运行命令在终端say hello

    在IRB中测试它会导致计算机说“你好”。

    您可能希望查看调用命令行的替代方法,因为反引号并不是最安全的。

    链接地址: http://www.djcxy.com/p/25285.html

    上一篇: Make terminal talk from a ruby script

    下一篇: Execute bash commands from a Rakefile