使用 awk 从文本生成 csv

发布于 2024-10-06 04:20:22 字数 204 浏览 2 评论 0原文

我有很多这样的 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 技术交流群。

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

发布评论

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

评论(1

む无字情书 2024-10-13 04:20:22

在不了解更多细节的情况下,以下答案看起来是不错的选择:

awk '{printf "%s,", $0; getline; print}'
# every second line gets merged with the previous line

awk \
'
  $0 ~ /^Title/ {printf "\n"}
  {printf "%s,", $0}
'
# every line that starts with Title starts
# a newline and the rest is merged into one
# long line separated by commas.

Without knowing any more detail, the following answers look like good options:

awk '{printf "%s,", $0; getline; print}'
# every second line gets merged with the previous line

or

awk \
'
  $0 ~ /^Title/ {printf "\n"}
  {printf "%s,", $0}
'
# every line that starts with Title starts
# a newline and the rest is merged into one
# long line separated by commas.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文