Linux常用基本命令:三剑客命令之-awk动作用法
Posted ghostwu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux常用基本命令:三剑客命令之-awk动作用法相关的知识,希望对你有一定的参考价值。
1,多个动作,怎么写?
[email protected]:~/linux/awk$ cat host.txt name ip地址 host1 192.168.1.1 host2 192.177.81.1 host3 10.0.0.5 host4 192.168.3.98 host5 192.168.3.98 host6 192.168.9.254
每个{}表示一个动作:
[email protected]:~/linux/awk$ awk ‘{print $1} {print $2}‘ host.txt name ip地址 host1 192.168.1.1 host2 192.177.81.1 host3 10.0.0.5 host4 192.168.3.98 host5 192.168.3.98 host6 192.168.9.254
他的等价形式,这种方式更符合我们的编程习惯,一个语句,一个分号。
[email protected]:~/linux/awk$ awk ‘{print $1; print $2}‘ host.txt name ip地址 host1 192.168.1.1 host2 192.177.81.1 host3 10.0.0.5 host4 192.168.3.98 host5 192.168.3.98 host6 192.168.9.254
请注意与这种方式的区别:
[email protected]:~/linux/awk$ awk ‘{print $1, $2}‘ host.txt name ip地址 host1 192.168.1.1 host2 192.177.81.1 host3 10.0.0.5 host4 192.168.3.98 host5 192.168.3.98 host6 192.168.9.254
2,if语句
[email protected]:~/linux/awk$ cat ghostwu.txt ghostwu 20 man zhangsan 22 lisi ghostwu 30 man zhanzhao 40 man peter 20 man zhanzhao 30 man
[email protected]:~/linux/awk$ awk ‘{ if(NR == 1){ print }}‘ ghostwu.txt ghostwu 20 man
如果是第一行,就输出, print 后面默认为$0( 当前行 ), 如果$0没有写
[email protected]:~/linux/awk$ awk ‘{ if(NR == 1){ print $1, $2}}‘ ghostwu.txt ghostwu 20 [email protected]:~/linux/awk$ awk ‘{ if(NR == 1){ print $1; print $2}}‘ ghostwu.txt ghostwu 20
3,利用if....else判断账户是普通用户还是系统用户
[email protected]:~/linux/awk$ awk -v FS=":" ‘{ if ( $3 < 1000 ){ print $1,"是系统用户"} else { print $1,"是普通用户" } }‘ /etc/passwd root 是系统用户 ghostwu 是普通用户 ...
4,if ... else... if嵌套
[email protected]:~$ awk ‘{ if( $2 > 0 ) { print "正数" } else if ( $2 == 0 ) { print "0" } else { print "负数" } }‘ num.txt 正数 负数 0 [email protected]:~$ cat num.txt 1 10 2 -10 3 0
5,循环
[email protected]:~$ awk ‘BEGIN{ for( i = 1; i <= 6; i++) { print i } }‘ 1 2 3 4 5 6
6,while循环
[email protected]:~$ awk ‘BEGIN{ i = 1; do { print "ghostwu",i; i++ } while( i <= 3 )}‘ ghostwu 1 ghostwu 2 ghostwu 3 [email protected]:~$ awk ‘BEGIN{ i = 1; do { print "ghostwu"i; i++ } while( i <= 3 )}‘ ghostwu1 ghostwu2 ghostwu3
7,do ... while循环
[email protected]:~$ awk ‘BEGIN{ i = 1; do{ print "ghostwu"i; } while( i++ <= 3 ) }‘ ghostwu1 ghostwu2 ghostwu3 ghostwu4
8,continue
[email protected]:~$ awk ‘BEGIN{ for( i = 1; i <= 3; i++ ){ if( i == 2 ){ continue; } print i; } }‘ 1 3
9,break
[email protected]:~$ awk ‘BEGIN{ for( i = 1; i <= 3; i++ ){ if( i == 2 ){ break; } print i; } }‘ 1
10, exit,终止程序执行,如果有END,跳转到END,如果没有,直接退出
[email protected]:~/linux/awk$ awk ‘BEGIN{ print "开始"} {print} END{ print "结束" }‘ ghostwu.txt 开始 ghostwu 20 man zhangsan 22 lisi ghostwu 30 man zhanzhao 40 man peter 20 man zhanzhao 30 man 结束 [email protected]:~/linux/awk$ awk ‘BEGIN{ print "开始";exit} {print} END{ print "结束"" }‘ ghostwu.txt 开始 结束
11,next,让awk直接从下一行开始
[email protected]:~/linux/awk$ awk ‘{print;next;}‘ host.txt name ip地址 host1 192.168.1.1 host2 192.177.81.1 host3 10.0.0.5 host4 192.168.3.98 host5 192.168.3.98 host6 192.168.9.254 [email protected]:~/linux/awk$ awk ‘{if( NR == 1 ){next;} print}‘ host.txt host1 192.168.1.1 host2 192.177.81.1 host3 10.0.0.5 host4 192.168.3.98 host5 192.168.3.98 host6 192.168.9.254