脚本文件中的 awk/sed
我有这种格式的输入文件
时间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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果整个文件都遵循该确切格式,您可以使用此公式
如果文件中还有其他条目会让您失望...您可能需要过滤并跟踪匹配数...
If it follows that exact format through the entire file, you can use this formula
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
,而不是sed
。首先:此命令行将仅打印数字:expr
命令将是一种将数字相加的便捷方法。You would use
awk
, notsed
. To get you started: this command line will print the numbers only:The
expr
command would be a handy way to add the numbers up.