call script.bat > script.log
但它不會顯示導致控制檯。 所以目前我要做的
call script.bat
call script.bat > script.log
這是非常低效的。
有沒有辦法將輸出顯示到控制檯並將其輸出到日誌文件? 我知道的選項之一是
call script.bat > script.log
type script.log
但是,如果script.bat只有在很長的批處理過程的步驟之一,我想看到的輸出每一步,因爲它並未真正發揮作用被調用,而不是在所有調用結束時執行一次類型。
。但是,謝謝你讓我知道Power-Shell – ttback
在這種情況下,你可以使用第三方程序。在http://unxutils.sourceforge.net/下找到的工具中,你會發現unix * tee *的本地win32端口。 – sge