命令提示符 - 输出结果而不覆盖目标文件
我遇到过从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
>>
运算符;它将输出附加到文件的现有内容中。Use the
>>
operator; it appends the output to the existing content of the file.