使用保存在单个文本文件中的多个cmd命令输出批处理文件

时间:2011-08-19 16:41:13

标签: text batch-file cmd

我正在尝试将批处理文件的输出转换为文本文件。我知道使用'>' 我可以获得标准输出流文本,但是在这种情况下批处理文件有多个cmd命令,我不知道如何将每个输出都输入到文本文件中。

非常感谢任何帮助。

1 个答案:

答案 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