1.将test2文件中的行追加到test1的同一行后,并保存到文件
#test1
haha
hehe
alice
bob
#test2
20
25
18
30
#test3
haha:20
hehe:25
alice:18
bob:30
~
命令:
awk 'BEGIN{OFS=":"}NR==FNR{a[NR]=$1}NR!=FNR{print a[FNR],$1>>"test3"}' test1 test2
2.某产品的CDN带宽运营成本迅猛增涨,其带宽主要由各种类型的图片组成,为了对某产品的图片流量带宽进行优化,现需要对该产品的图片和号码特性做一些分析,已有的日志文件test.log供分析使用
001|100|abc.gif
002|80|abd.jpg
003|150|abe.gif
001|60|abf.gif
003|30|abg.jpg
-
1.找出所有gif图片请求的所有号码
[<46>root:localhost tmp]->awk -F "|" '/gif$/{print $1}' test.log 001 003 001
-
2.找出所有gif图片请求的号码和其对应的请求大小总和及请求数总和
[<60>root:localhost tmp]->awk -F "|" '/gif$/{no[$1]++;size[$1]+=$2}END{for( i in no ){print i,no[i],size[i]}}' test.log 003 1 150 001 2 160
-
3.找出所有gif图片请求号码,并按照其请求大小总和从大到小排序
[<64>root:localhost tmp]->awk -F "|" '/gif$/{no[$1]++;size[$1]+=$2}END{for( i in no ){print i,no[i],size[i]}}' test.log | sort -k2 -rn 001 2 160 003 1 150
-
4.找出所有gif图片请求的号码,并按其请求平均图片大小从大到小排序
[<67>root:localhost tmp]->awk -F "|" '/gif$/{no[$1]++;size[$1]+=$2}END{for( i in no ){print i,no[i],size[i],size[i]/no[i]}}' test.log | sort -k4 -n
001 2 160 80
003 1 150 150
</