如何使用 shell 脚本从文本文件生成 CSV
我正在尝试将三个 txt 文件中的数据写入 csv 文件中。
三个文件包含以下数据
文件中的数据采用以下格式 - 服务器日期 文件名编号
第一个 txt 文件为
app1 11.12.16 name1 2
app1 11.12.17 name2 3
- 第二个
app2 11.12.16 name1 2
app2 11.12.17 name2 3
与第三个文件相同,服务器为 app3
我想使用 shell 将这三个文件中的数据放入一个 csv 文件脚本。 txt文件中的数据以空格分隔。
数据应该以相同的方式只是在不同的行中。
还有一件事可以将标题作为服务器日期文件名编号放在第一行并放置过滤器吗?是否可以?
提前致谢...
I am trying to write data from three txt files in csv file.
three files contain below data
data in the file is in this format -server date filename number
first txt file as-
app1 11.12.16 name1 2
app1 11.12.17 name2 3
second as
app2 11.12.16 name1 2
app2 11.12.17 name2 3
and same for thrird file with server as app3
i want to put this data from these three files to one csv file using shell script. the data in the txt file is separated with space.
data should go in same manner just in different row.
One more thing can be put a heading in the first row as server date filename number and put filter? is it possible?
Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种方法:
不过,这不会重新排序行。
This is a way to do it:
This doesn't reorder rows, though.