我正在尝试将批处理文件的输出转换为文本文件。我知道使用'>' 我可以获得标准输出流文本,但是在这种情况下批处理文件有多个cmd命令,我不知道如何将每个输出都输入到文本文件中。
非常感谢任何帮助。
答案 0 :(得分:1)
希望这有帮助
@echo off
rem start the file with a single >
echo test1 > file.txt
rem append the file with a double >>
echo test2 >> file.txt
type file.txt