使用 awk 从文本生成 csv
我有很多这样的 txt 文件:
Title 1
Text 1
我想从所有这些文件中创建一个 csv 文件,它看起来像这样:
Title 1,Text 1
Title 2,Text 2
Title 3,Text 3
etc
我怎样才能使用 awk 做到这一点?
I have a lot of txt files like this:
Title 1
Text 1
And I would like to make one csv file from all of them that it will look like this:
Title 1,Text 1
Title 2,Text 2
Title 3,Text 3
etc
How could I do it using awk?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在不了解更多细节的情况下,以下答案看起来是不错的选择:
或
Without knowing any more detail, the following answers look like good options:
or