我需要從紅寶石運行下面的代碼:如何在ruby中獲得wget輸出?
system "wget http://example.org/some/large/archive.zip"
當我運行這個命令我看到
輸出重定向到「wget的日誌」。
我需要做tail -f wget-log
看到進步
我如何可以看到終端wget的輸出,我運行紅寶石進程?
我已經試過
system "wget -O - http://example.org/some/large/archive.zip > dev/null"
,但它並沒有幫助
也許還有其他選擇下載大型檔案紅寶石,看看進展如何?
'Open3.capture3'沒有用的wget爲我工作。它使用'Open3.capture2'('wget http://example.org/some/large/archive.zip')' – Hirurg103
是的,稍有不同。 –