批处理文件 - 如何在多个实例中输出批处理文件的信息
是否可以从批处理文件中输出信息,并具有多个输出。
例如
test.bat > output.txt
,20 秒后创建一个新文件
test.bat > output2.txt
等(进程仍在运行)
Is it possible to output information from a batch file, with multiple outputs.
E.g.
test.bat > output.txt
then 20 seconds later create a new file
test.bat > output2.txt
etc. (With the process still running)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无需因为批量限制而放弃。这可以很容易地实现,
如果您下载了 Windows 版 sed 的副本,那么获得具有时间顺序的唯一名称应该不会太难。
注意:如果您使用的是 Win Vista/7,则需要将其更改为 %I 而不是 %%I
No need to give up just cause you're limited to batch. This can be achieved quite easy
If you download a copy of sed for windows it shouldn't be too hard to achieve a unique name with chronology.
Note: if you're using Win Vista/7 you'll need to change this to %I instead of %%I