将批处理文件命令重定向到文件

将批处理文件命令重定向到文件

我的情况是将所有批处理文件命令发送到文本文件。例如:

(
echo line one
echo line two
echo line three
) >> "script.txt"

我不想将上述命令输出发送到 script.txt,而是希望文件包含:

echo line one
echo line two
echo line three

有什么办法可以做到这一点?

答案1

注释太长;请尝试下一个代码片段:

(
echo echo line one
echo echo line two
echo echo line three
) >> "script.txt"

答案2

这不是“重定向”命令,但如果您只是想将命令放入文件中,您可以尝试以下操作:

doskey /history >> script.txt

相关内容