免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2179 | 回复: 3
打印 上一主题 下一主题

[文本处理] 请教大侠“shell基础九:awk里”数组问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-03-10 13:32 |只看该作者 |倒序浏览
shell基础九:awk里的这个代码怎么理解啊,数组不是很懂啊, 大侠们能详细解释下每行意思么?
我的理解$1==colour,colour等于Yellow、Orange、Red,是数组还是变量, belt[colour]++这又是代表什么意思?
  1. BEGIN{
  2.     FS="#"
  3.     #load the belt colours we are interested in only
  4.     belt["Yellow"]
  5.     belt["Orange"]
  6.     belt["Red"]
  7.     #end of BEGIN
  8.     #load the student type
  9.     student["Junior"]
  10.     student["Senior"]
  11. }
  12. #loop thru array that holds the belt colours against field-1
  13. #if we have a match,keep a running total
  14. { for (colour in belt)
  15.     {
  16.         if ($1==colour)
  17.             belt[colour]++
  18.     }
  19. }
  20.     #loop thru array that holds the student type against
  21.     #field-2 if we have a match, keep a running total
  22.        { for(senior_or_junior in student)
  23.            {
  24.                if($2 == senior_or_junior)
  25.                    student[senior_or_junior]++
  26.            }
  27.        }
  28.     #finished processing so print out the matches..for each array
  29. END{ for(colour in belt)
  30.        print "The club has",belt[colour],colour,"Belts"

  31.         for(senior_or_junior in student)
  32.              print "The club has",student[senior_or_junior]\
  33.                             , senior_or_junior, "students"
  34.    }
复制代码

论坛徽章:
0
2 [报告]
发表于 2014-03-10 14:41 |只看该作者
回复 1# 844097977

colour不是数组不是变量,我建议你管他叫做index of an element in array.
Yellow, Red and Orange,都是index
belt是array
belt["Yellow"]叫做value of an element index "Yellow" in array "belt"

论坛徽章:
1
2015年迎新春徽章
日期:2015-03-04 09:58:11
3 [报告]
发表于 2014-03-10 14:44 |只看该作者
  1. BEGIN{
  2.     FS="#" #设定列分隔符为#
  3.     #load the belt colours we are interested in only
  4.     belt["Yellow"]
  5.     belt["Orange"]
  6.     belt["Red"]
  7.     #以上三行定义一个数组,数组名belt ,belt的结构如下:
  8.     #belt = array(
  9.     #    "yellow" = > 0,
  10.     #    "Orange" => 0,
  11.     #    "Red" => 0,
  12.     #) 其中=> 前面的元素称为键值 也就是key=> value 中的key


  13.     #end of BEGIN
  14.     #load the student type
  15.     student["Junior"]
  16.     student["Senior"]
  17.     # 同bet数组
  18. }
  19. #loop thru array that holds the belt colours against field-1
  20. #if we have a match,keep a running total
  21. { for (colour in belt)
  22.     #这个循环的每次是把 belt数组的 键值Yellow,Orange,Red ,赋值给colour
  23.     {
  24.         if ($1==colour)
  25.             #如果$1 = 三个键值的其中一个 就让该键值对应的value+1
  26.             #比如说 $1 为 Red那么 belt['Red'] 值就+1,
  27.             belt[colour]++
  28.             }
  29.     }
  30.     #loop thru array that holds the student type against
  31.     #field-2 if we have a match, keep a running total
  32.     { for(senior_or_junior in student)
  33.         {
  34.             if($2 == senior_or_junior)
  35.                 student[senior_or_junior]++
  36.                 }
  37.             #同belt
  38. #finished processing so print out the matches..for each array
  39.         END{ for(colour in belt)#循环输出,没什么好说的 for(i in a )这种事随机输出数组的元素,其中i 为key a[i] 为value
  40.             print "The club has",belt[colour],colour,"Belts"

  41.             for(senior_or_junior in student)
  42.                 print "The club has",student[senior_or_junior]\
  43.                 , senior_or_junior, "students"
  44.    }
复制代码

论坛徽章:
0
4 [报告]
发表于 2014-03-10 14:52 |只看该作者
明白了谢谢两位大侠
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP