禁用标准输出中的注释 (DOS)
如果我使用 Dos 命令“copy”连接两个文件:
copy a1.txt + a2.txt a.txt
我将在 stdout 中看到类似以下内容:
C:\a1.txt C:\a2.txt 1 file(s) copied.
我不想在 stdout 中写入任何内容,我的意思是,我只想拥有 'a.txt' 而没有这 3 个文件在标准输出中写入的行。有什么办法可以做到吗?原因是,我需要速度,而且我知道任何 IO 都需要时间。
谢谢, 沙迪。
If I use Dos command "copy" to concatenate two files:
copy a1.txt + a2.txt a.txt
I will have something like the following in stdout:
C:\a1.txt C:\a2.txt 1 file(s) copied.
I do not want to have anything written in stdout, I mean, I just want to have 'a.txt' without those 3 lines written in stdout. Is there any way to do so? the reason is, I need speed and I know that any IO takes time.
Thanks,
Shadi.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将输出重定向到nul:
copy a1.txt+a2.txt a.txt >空。
Redirect output to nul:
copy a1.txt+a2.txt a.txt > nul
.