命令提示符到文本文件而不覆盖?
我需要从命令提示符发送一些信息到文本文件,但我想让它继续添加到文本文件。
例如
ipconfig >C:\Users\Desktop\File.TXT
,
tasklist >C:\Users\Dekstop\File.TXT.
当第二个命令运行时,它会覆盖该文件。我希望它只是添加到文件中。
I need to send some information from the command prompt to a text file but I would like to have it just continue adding to the text file.
For example
ipconfig >C:\Users\Desktop\File.TXT
and then
tasklist >C:\Users\Dekstop\File.TXT.
When the second command runs it overwrites the file. I would like it to just add on to the file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用于
第二个命令
Use
for the second command
>>
用于将更改附加到旧文件:>>
is used to append the changes to the old file: