我正在尝试做
call script.bat > script.log
但它不会在控制台中显示结果。所以目前我必须做
call script.bat
call script.bat > script.log
这真的是低效的。
有没有办法将输出显示到控制台并将其输出到日志文件?我知道其中一种选择是
call script.bat > script.log
type script.log
但是,如果 script.bat 只是一个长批处理过程中的一个步骤,那么这并没有真正起作用,我希望看到每个步骤的输出,因为它被调用而不是在所有结束时执行一次类型电话。