有没有办法获取exec任务的命令输出?
exec :checkout do |cmd|
cmd.command = 'C:/Program Files (x86)/Microsoft Visual Studio 10.0/Common7/IDE/tf.exe'
cmd.parameters 'checkout'
end
答案 0 :(得分:2)
您提到了长鳍金枪鱼并且您使用了任务exec
。如果没有特别需要长鳍金枪鱼,您可以使用标准的红宝石工具:
#Define the command:
cmd = 'dir'
#or in your case:
#cmd ['"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\tf.exe"',
# 'checkout'].join(' ')
#Version one:
output = `#{cmd}`
puts output
#Version two:
output = %x{#{cmd}}
puts output
可以找到更多解决方案