脚本文件中的 awk/sed

发布于 2024-10-31 19:52:40 字数 131 浏览 0 评论 0原文

我有这种格式的输入文件
时间1 = 0.000000
时间1 = 0.010000
时间1 = 0.020000
time1 = 0.170000

我需要编写一个脚本来提取值并计算平均值。我该怎么做?

I have input file in this format
time1 = 0.000000
time1 = 0.010000
time1 = 0.020000
time1 = 0.170000

I need to write a script to extract the values and compute the average. How do I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

感性不性感 2024-11-07 19:52:40

如果整个文件都遵循该确切格式,您可以使用此公式

awk '{sum += $3} END {print sum/NR}' file

如果文件中还有其他条目会让您失望...您可能需要过滤并跟踪匹配数...

awk '/time/ {sum+=$3; total+=1} END {print sum/total}' file

If it follows that exact format through the entire file, you can use this formula

awk '{sum += $3} END {print sum/NR}' file

If there are other entries in the file that will throw you off... you might need to filter and track the number of matches...

awk '/time/ {sum+=$3; total+=1} END {print sum/total}' file
澜川若宁 2024-11-07 19:52:40

您将使用 awk,而不是 sed。首先:此命令行将仅打印数字:

awk '{print $3}' FILENAME

expr 命令将是一种将数字相加的便捷方法。

You would use awk, not sed. To get you started: this command line will print the numbers only:

awk '{print $3}' FILENAME

The expr command would be a handy way to add the numbers up.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文