- 论坛徽章:
- 1
|
- BEGIN{
- FS="#" #设定列分隔符为#
- #load the belt colours we are interested in only
- belt["Yellow"]
- belt["Orange"]
- belt["Red"]
- #以上三行定义一个数组,数组名belt ,belt的结构如下:
- #belt = array(
- # "yellow" = > 0,
- # "Orange" => 0,
- # "Red" => 0,
- #) 其中=> 前面的元素称为键值 也就是key=> value 中的key
- #end of BEGIN
- #load the student type
- student["Junior"]
- student["Senior"]
- # 同bet数组
- }
- #loop thru array that holds the belt colours against field-1
- #if we have a match,keep a running total
- { for (colour in belt)
- #这个循环的每次是把 belt数组的 键值Yellow,Orange,Red ,赋值给colour
- {
- if ($1==colour)
- #如果$1 = 三个键值的其中一个 就让该键值对应的value+1
- #比如说 $1 为 Red那么 belt['Red'] 值就+1,
- belt[colour]++
- }
- }
- #loop thru array that holds the student type against
- #field-2 if we have a match, keep a running total
- { for(senior_or_junior in student)
- {
- if($2 == senior_or_junior)
- student[senior_or_junior]++
- }
- #同belt
- #finished processing so print out the matches..for each array
- END{ for(colour in belt)#循环输出,没什么好说的 for(i in a )这种事随机输出数组的元素,其中i 为key a[i] 为value
- print "The club has",belt[colour],colour,"Belts"
- for(senior_or_junior in student)
- print "The club has",student[senior_or_junior]\
- , senior_or_junior, "students"
- }
复制代码 |
|