将多行批量处理为单行?
在批处理(.bat)中,如果我有一个如下所示的文件:
test1 test2 test3
如何重写该文件的内容以使其位于同一行?例如:
test1, test2, test3
预先感谢!
尼克拉斯
In batch (.bat) if I have a file that looks like this:
test1 test2 test3
How can I rewrite the content of that file to be on the same line? e.g:
test1, test2, test3
Thanks in advance!
Niklas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
for /f
命令逐行读取文件。然后,您可以将结果累积到变量中以获得最终输出。Use the
for /f
command to read a file line-by-line. You can then accumulate the results into a variable for final output.我已经解决了!
I've solved it!