如何从Albacore exec任务获取命令输出?

时间:2011-12-21 22:03:31

标签: ruby rake albacore

有没有办法获取exec任务的命令输出?

exec :checkout do |cmd|
  cmd.command = 'C:/Program Files (x86)/Microsoft Visual Studio 10.0/Common7/IDE/tf.exe'    
  cmd.parameters 'checkout'
end

1 个答案:

答案 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

Getting output of system() calls in Ruby

可以找到更多解决方案