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

What is the usage loop in awk?

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

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

What is the usage cycle in awk? I believe many inexperienced people don't know what to do about it. Therefore, this article summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

The guided awk script has three main parts: the BEGIN and END functions (both optional), and the functions that the user writes to execute each time. To some extent, the body of the awk is a loop because the commands in the function are executed once for each record. However, sometimes you want to execute multiple commands on a single record, so you need to use a loop.

Let's learn about different types of loops that execute the same command multiple times.

The awk script has three main parts: the BEGIN and END functions (both optional), and the functions that the user writes to execute each time. To some extent, the body of the awk is a loop because the commands in the function are executed once for each record. However, sometimes you want to execute multiple commands on a single record, so you need to use a loop.

There are many types of loops that are suitable for different scenarios.

While cycle

A while loop detects an expression and executes the command if the expression is true. When the expression changes to false, the loop breaks.

#! / bin/awk-f BEGIN {# Loop through 1 to 10 iTunes 1; while (I

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