批处理文件的输出,其中包含保存在单个文本文件中的多个 cmd 命令

发布于 2024-11-30 08:47:02 字数 122 浏览 0 评论 0原文

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

非常感谢任何帮助。

I am trying to get the output of my batch file into a text file. I know by using '>'
I can get the standard output stream text, however in this case the batch file has multiple cmd commands and I don't know how to get outputs for each of this into a text file.

Any help is greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情何以堪。 2024-12-07 08:47:02

希望这有帮助

@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

Hope this helps

@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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文