ruby – 使用rake sh时如何检索命令的输出?

前端之家收集整理的这篇文章主要介绍了ruby – 使用rake sh时如何检索命令的输出?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用sh运行命令,需要读取该命令的输出.例如

sh“

但是,sh只是似乎返回true,而不是包含whoami命令的输出的字符串.有人知道解决方案吗?

解决方法

有几种方法
output = `whoami`

#or

output = %x[whoami]

# or using 'system' but in case of errors it's gonna return false

output = system "whoami"
原文链接:https://www.f2er.com/ruby/272949.html

猜你在找的Ruby相关文章