Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use awk command to realize summation, average, maximum and minimum

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "how to use the awk command to achieve summation, average, maximum and minimum". In the operation of actual cases, many people will encounter such a dilemma, and then let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

1. Summation

The code is as follows:

Cat data | awk'{sum+=$1} END {print "Sum =", sum}'

2. Find the average

The code is as follows:

Cat data | awk'{sum+=$1} END {print "Average =", sum/NR}'

3. Find the maximum value

The code is as follows:

Cat data | awk 'BEGIN {max= 0} {if ($1 > max) max=$1 fi} END {print "Max=", max}'

4. Find the minimum value (you can set a super large number for the initial value of min)

The code is as follows:

Awk 'BEGIN {min = 1999999} {if ($1)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report