[原创]awk高级应用

简介:

 今天看到unix shell 范例精解上有道awk的题目 做了以后拿来和大家分享下

处理前的文档:

 Mike Harrington:(510) 548-1278:250:100:175
 Christian Dobbins:(408) 538-2358:155:90:201
 Susan Dalsass:(206) 654-6279:250:60:50
 Archie McNichol:(206) 548-1348:250:100:175
 Jody Savage:(206) 548-1278:15:188:150
 Guy Quigley:(916) 343-6410:250:100:175
 Dan Savage:(406) 298-7744:450:300:275
 Nancy McNeil:(206) 548-1278:250:80:75
 John Goldenrod:(916) 348-4278:250:100:175
 Chet Main:(510) 548-5258:50:95:135
 Tom Savage:(408) 926-3456:250:168:200
 Elizabeth Stachelin:(916) 440-1763:175:75:300

需要的结果如下:

                ***CAMPAIGN 1998 CONTRIBUTIONS***

 

---------------------------------------------------------------------------------

 

 Name                   PHone                   Jan |   Feb |   MAR |   Total Donated

---------------------------------------------------------------------------------

 

Mike Harrington         (510) 548-1278          250     100     175     525

Christian Dobbs         (408) 538-2358          155     90      201     446

Susan Dalsass           (206) 654-6279          250     60      50      360

Archie McNichol         (206) 548-1348          250     100     175     525

Jody Savage             (206) 548-1278          15      188     150     353

Guy Quigley             (916) 343-6410          250     100     175     525

Dan Savage              (406) 298-7744          450     300     275     1025

Nancy McNeil            (206) 548-1278          250     80      75      405

John Goldenrod          (916) 348-4278          250     100     175     525

Chet Main               (510) 548-5258          50      95      135     280

Tom Savage              (408) 926-3456          250     168     200     618

Elibeth Stachel         (916) 440-1763          175     75      300     550

-----------------------------------------------------------------------------------

                SUMMARY

-----------------------------------------------------------------------------------

The campan received atotal of $6137 for this quarter

average donation for the 12 contributors was $511.417.

The highest contribution was $450.

The lowest contribution was $15.

 

代码如下:

 

BEGIN{FS=":";low1=300;low2=400;low3=500

        OFS="\t"

        print "\t\t***CAMPAIGN 1998 CONTRIBUTIONS***\n"

        print "---------------------------------------------------------------------------------\n"

        print " Name\t\t\tPHone\t\t\tJan |\tFeb |\tMAR |\tTotal Donated"

        print "---------------------------------------------------------------------------------\n"

        }

 

{tot=$3+$4+$5}

{Ttot+=tot}

{print $1,"\t"$2"\t\t"$3"  \t"$4"  \t"$5"  \t"tot}

{avg=Ttot/12}

{high1=(high1>$3)?high1:$3}

{high2=(high1>$4)?high1:$4}

{high3=(high1>$5)?high1:$5}

{max12=(high1>high2)?high1:high2}

{max23=(high2>high3)?high2:high3}

{Max=(max12>max23)?max12:max23}

{low1=(low1<$3)?low1:$3}

{low2=(low1<$4)?low1:$4}

{low3=(low1<$5)?low1:$5}

{min12=(low1<low2)?low1:low2}

{min23=(low2<low3)?low2:low3}

{Min=(min12<min23)?min12:min23}

 

 

 

 

 

END{


        print "-----------------------------------------------------------------------------------"

        print"\t\tSUMMARY"

        print "-----------------------------------------------------------------------------------"

        printf "The campan received atotal of $";printf Ttot; print " for this quarter"

        printf "average donation for the 12 contributors was $"; printf avg ;print"."

        printf "The highest contribution was $";printf Max;print "."

        printf "The lowest contribution was $";printf Min;print "."

 

}

 




      本文转自hb_fukua  51CTO博客,原文链接:http://blog.51cto.com/2804976/530056,如需转载请自行联系原作者




相关文章
|
Shell 网络安全 Perl
2021年11月22号 awk高级用法(下)
2021年11月22号 awk高级用法(下)
97 0
|
Perl
2021年11月18号 awk高级用法(上)
2021年11月18号 awk高级用法(上)
98 0
|
Unix Shell BI
awk 手册
1. 前言 有关本手册 : 这是一本awk学习指引, 其重点着重于 : l        awk 适于解决哪些问题 ? l        awk 常见的解题模式为何 ? 为使读者快速掌握awk解题的模式及特性, 本手册系由一些较具代表性的范例及其题解所构成; 各范例由浅入深, 彼此间相互连贯,范例中并对所使用的awk语法及指令辅以必要的说明.
1119 0
|
Shell 网络安全 Perl

热门文章

最新文章