2
我從一個函數中觸發cap任務和其他命令行腳本,但我想知道什麼是我顯示實時日誌的最佳方式。在rails中實時捕獲stdout
我從一個函數中觸發cap任務和其他命令行腳本,但我想知道什麼是我顯示實時日誌的最佳方式。在rails中實時捕獲stdout
我結束了在這個片段中的解決方案
STDOUT.sync = true
IO.popen(command+" 2>&1") do |pipe|
pipe.sync = true
while str = pipe.gets
puts "-> "+str
end
end