【发布时间】:2026-01-18 15:40:01
【问题描述】:
对于一个文件,它在控制台上显示标准错误,即命令提示符。我想把它打印在文本文件上。
【问题讨论】:
-
谷歌知道答案,求
How to write standard error in text file using batch command
标签: batch-file batch-processing batch-rename batch-updates
对于一个文件,它在控制台上显示标准错误,即命令提示符。我想把它打印在文本文件上。
【问题讨论】:
How to write standard error in text file using batch command
标签: batch-file batch-processing batch-rename batch-updates
some_file.exe >> text.file 2>&1
这会将所有输出打印到文本文件.For more info.
【讨论】:
【讨论】: