awk 流程控制语句(if,for,while,do)
同linux 下shell 一样,awk下也有 while、do-while和for 这样的流程控制语句,在for、while、do-while 循环中允许使用break,continue语句来控制流程走向,也允许使用exit这样的语句来退出。break中断当前正在执行的循环并跳到循环外执行下一条语句。
一、条件判断语句(if)
1if(表达式) #if ( Variable in Array )
2 语句1
3else
4 语句2
格式中"语句1"可以是多个语句,如果你为了方便Unix awk判断也方便你自已阅读,你最好将多个语句用{}括起来。Unix awk分枝结构允许嵌套,其格式为:
1if(表达式)
2 {语句1}
3else if(表达式)
4 {语句2}
5else
6 {语句3}
示例如下:
1[root@361way ~]# awk 'BEGIN{
2test=100;
3if(test>90)
4{
5 print "very good";
6}
7else if(test>60)
8{
9 print "good";
10}
11else
12{
13 print "no pass";
14}
15}'
16very good
每条命令语句后面可以用“;”号结尾。
二、循环语句(while,for,do)
1、while语句
1while(表达式)
2{语句}
示例:
1[root@361way ~]# awk 'BEGIN{
2test=100;
3total=0;
4while(i<=test)
5{
6 total+=i;
7 i++;
8}
9print total;
10}'
115050
2、for 循环
1格式1:
2for(变量 in 数组)
3{语句}
4格式2:
5for(变量;条件;表达式)
6{语句}
例1:
1# awk 'BEGIN{ for(k in ENVIRON)
2 {
3 print k"="ENVIRON[k];
4 }
5}'
6TERM=linux
7G_BROKEN_FILENAMES=1
8SHLVL=1
9PWD=/tmp
10………………省略
例2:
1# awk 'BEGIN{
2total=0;
3for(i=0;i<=100;i++)
4{
5 total+=i;
6}
7print total;
8}'
95050
3、do循环
格式:
1do
2{语句}while(条件)
示例:
1# awk 'BEGIN{
2total=0;
3i=0;
4do
5{
6 total+=i;
7 i++;
8}while(i<=100)
9print total;
10}'
115050
以上为awk流程控制语句,从语法上面大家可以看到,与c语言是一样的。有了这些语句,其实很多shell程序都可以交给awk,而且性能是非常快的。
语句 | 描述 |
---|---|
break | 当break语句用于while或for语句时,导致退出程序循环。 |
continue | 当continue 语句用于while或 for 语句时,使程序循环移动到下一个迭代。 |
next | 能能够导致读入下一个输入行,并返回到脚本的顶部。这可以避免对当前输入行执行其他的操作过程。 |
exit | 语句使主输入循环退出并将控制转移到END,如果END存在的话。如果没有定义END规则,或在END中应用exit语句,则终止脚本的执行。 |
continue示例:
1awk 'BEGIN {
2 for (x = 0; x <= 20; x++) {
3 if (x == 5)
4 continue
5 printf "%d ", x
6 }
7 print ""
8}'
9--------------------------------------------------------------
10awk 'BEGIN {
11 x = 0
12 while (x <= 20) {
13 if (x == 5)
14 continue
15 printf "%d ", x
16 x++
17 }
18 print ""
19}'
以上代码参自gun gawk continue文档。
break示例:
1awk '{
2 num = $1
3 for (divisor = 2; divisor * divisor <= num; divisor++) {
4 if (num % divisor == 0)
5 break
6 }
7 if (num % divisor == 0)
8 printf "Smallest divisor of %d is %d\n", num, divisor
9 else
10 printf "%d is prime\n", num
11}'
12---------------------------------------------------------------
13awk '{
14 num = $1
15 for (divisor = 2; ; divisor++) {
16 if (num % divisor == 0) {
17 printf "Smallest divisor of %d is %d\n", num, divisor
18 break
19 }
20 if (divisor * divisor > num) {
21 printf "%d is prime\n", num
22 break
23 }
24 }
25}'
该部分代码参照gun soft break 文档。
三、awk 脚本中运行
awk脚本也支持像shell 一样,将语句写到文件中,通过awk -f 运行,如下图:
四、性能比较
awk 求和运算
1[root@361way ~]# time (awk 'BEGIN{ total=0;for(i=0;i<=10000;i++){total+=i;}print total;}')
250005000
3real 0m0.003s
4user 0m0.002s
5sys 0m0.000s
普通的shell 求和运算
1[root@361way ~]# time(total=0;for i in $(seq 10000);do total=$(($total+i));done;echo $total;)
250005000
3real 0m0.145s
4user 0m0.126s
5sys 0m0.005s
单单从这个结果来看,同样是for循环求和,awk的性能确实数倍于普通的shell 语句。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/awk-flow-control/4955.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.