命令提示符 - 输出结果而不覆盖目标文件

发布于 2024-11-08 17:31:33 字数 128 浏览 0 评论 0原文

我遇到过从 CLI 程序输出结果的情况:

例如 input.exe > 虽然output.txt

已经包含文本,但默认情况下,使用上述命令时它会被覆盖,如何将输出写入output.txt而不覆盖现有数据?

I have a situation where I output results from a CLI program:

e.g. input.exe > output.txt

Although output.txt already contains text, by default it gets overwritten when using the command above, how can you write the output to output.txt without overwriting existing data?

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

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

发布评论

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

评论(1

缪败 2024-11-15 17:31:33

使用 >> 运算符;它将输出附加到文件的现有内容中。

input.exe >> output.txt

Use the >> operator; it appends the output to the existing content of the file.

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