gpt4 book ai didi

linux - 如何搜索网站内容并将其存储在 Excel 中?

转载 作者:太空宇宙 更新时间:2023-11-04 13:01:01 25 4
gpt4 key购买 nike

我们有一个显示内容示例的网站:

Lines of code
12333
Issues
235
Coverage
67.5%
etc.

其中数据在一定时间自动更新。使用 Linux 我必须编写 shell 脚本来获取上面的数据并将该数据推送到 Excel 工作表中。我已经使用了 grep 但无法执行。

最佳答案

这一行将有助于:

awk '{printf "%s%s",NR==1?"":"|",$0}END{print ""}' file(or your input)

测试你的输入:

kent$  cat f
Lines of code
12333
Issues
235
Coverage
67.5%
etc.

kent$ awk '{printf "%s%s",NR==1?"":"|",$0}END{print ""}' f
Lines of code|12333 |Issues |235|Coverage|67.5%|etc.

关于linux - 如何搜索网站内容并将其存储在 Excel 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33871564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com