命令提示符到文本文件而不覆盖?

发布于 2024-11-06 20:43:06 字数 235 浏览 1 评论 0原文

我需要从命令提示符发送一些信息到文本文件,但我想让它继续添加到文本文件。

例如

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 技术交流群。

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

发布评论

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

评论(2

青萝楚歌 2024-11-13 20:43:06

用于

tasklist >> C:\Users\Desktop\File.TXT

第二个命令

Use

tasklist >> C:\Users\Desktop\File.TXT

for the second command

千仐 2024-11-13 20:43:06

>> 用于将更改附加到旧文件:

 ipconfig > C:\Users\Desktop\File.TXT

 tasklist >> C:\Users\Dekstop\File.TXT

>> is used to append the changes to the old file:

 ipconfig > C:\Users\Desktop\File.TXT

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