免费注册 查看新帖 |

Chinaunix

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

awk中FS的一个问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-10-22 02:45 |只看该作者 |倒序浏览
自己做实验碰到个问题:
[root@ shell]# cat a.log
1abc    2abc
3abc    4abc
5abc    6abc

[root@ shell]# awk 'FS=$2 {print FS}' a.log
2abc
a
知道FS是在a.log的第二行才开始生效,所以可以理解输出的第一行,输出第二行就不理解了。

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
2 [报告]
发表于 2011-10-22 04:04 |只看该作者
本帖最后由 yinyuemi 于 2011-10-22 04:15 编辑

回复 1# yuanfaxiang1008

再做个实验,瞅瞅到底是肿么梨?

  1. awk '{printf "line"NR":\t$1=\""$1"\"\t$2=\""$2"\"\tOLD_FS=\""FS"\""}FS=$2 {printf "\tNEW_FS=\""FS"\""}{print  !FS?"\tNEW_FS=\""FS"\"":""}'  log
复制代码

论坛徽章:
8
摩羯座
日期:2014-11-26 18:59:452015亚冠之浦和红钻
日期:2015-06-23 19:10:532015亚冠之西悉尼流浪者
日期:2015-08-21 08:40:5815-16赛季CBA联赛之山东
日期:2016-01-31 18:25:0515-16赛季CBA联赛之四川
日期:2016-02-16 16:08:30程序设计版块每日发帖之星
日期:2016-06-29 06:20:002017金鸡报晓
日期:2017-01-10 15:19:5615-16赛季CBA联赛之佛山
日期:2017-02-27 20:41:19
3 [报告]
发表于 2011-10-22 08:43 |只看该作者

  1. Advanced Notes: Changing FS Does Not Affect the Fields

  2. According to the POSIX standard, awk is supposed to behave as if each record is split into fields at the time it is read. In particular, this means that if you change the value of FS after a record is read, the value of the fields (i.e., how they were split) should reflect the old value of FS, not the new one.

  3. However, many older implementations of awk do not work this way. Instead, they defer splitting the fields until a field is actually referenced. The fields are split using the current value of FS! (d.c.) This behavior can be difficult to diagnose. The following example illustrates the difference between the two methods. (The sed21 command prints just the first line of /etc/passwd.)

  4.      sed 1q /etc/passwd | awk '{ FS = ":" ; print $1 }'

  5. which usually prints:

  6.      root

  7. on an incorrect implementation of awk, while gawk prints something like:

  8.      root:nSijPlPhZZwgE:0:0:Root:/:

  9. Advanced Notes: FS and IGNORECASE

  10. The IGNORECASE variable (see User-modified) affects field splitting only when the value of FS is a regexp. It has no effect when FS is a single character, even if that character is a letter. Thus, in the following code:

  11.      FS = "c"
  12.      IGNORECASE = 1
  13.      $0 = "aCa"
  14.      print $1

  15. The output is ‘aCa’. If you really want to split fields on an alphabetic character while ignoring case, use a regexp that will do it for you. E.g., ‘FS = "[c]"’. In this case, IGNORECASE will take effect.
复制代码

论坛徽章:
8
摩羯座
日期:2014-11-26 18:59:452015亚冠之浦和红钻
日期:2015-06-23 19:10:532015亚冠之西悉尼流浪者
日期:2015-08-21 08:40:5815-16赛季CBA联赛之山东
日期:2016-01-31 18:25:0515-16赛季CBA联赛之四川
日期:2016-02-16 16:08:30程序设计版块每日发帖之星
日期:2016-06-29 06:20:002017金鸡报晓
日期:2017-01-10 15:19:5615-16赛季CBA联赛之佛山
日期:2017-02-27 20:41:19
4 [报告]
发表于 2011-10-22 08:43 |只看该作者

论坛徽章:
0
5 [报告]
发表于 2011-10-22 09:42 |只看该作者

  1. # awk '{print "old="FS"$"}FS=$2{print FS}' tt
  2. old= $               #原FS
  3. 2abc                  #赋值
  4. old=2abc$        #第二行开始 后面的因为模式为0不打印
  5. old=$                #第三行开始 因为第2行的赋值,所以认到$2为a,打印,结束
  6. a



  7. # echo "abc"|awk 'BEGIN{FS="";}{for(i=1;i<=NF;i++){print $i}}'
  8. a
  9. b
  10. c
复制代码
解释完毕

论坛徽章:
0
6 [报告]
发表于 2011-10-22 11:23 |只看该作者
lz的主机名居然叫shell

论坛徽章:
145
技术图书徽章
日期:2013-10-01 15:32:13戌狗
日期:2013-10-25 13:31:35金牛座
日期:2013-11-04 16:22:07子鼠
日期:2013-11-18 18:48:57白羊座
日期:2013-11-29 10:09:11狮子座
日期:2013-12-12 09:57:42白羊座
日期:2013-12-24 16:24:46辰龙
日期:2014-01-08 15:26:12技术图书徽章
日期:2014-01-17 13:24:40巳蛇
日期:2014-02-18 14:32:59未羊
日期:2014-02-20 14:12:13白羊座
日期:2014-02-26 12:06:59
7 [报告]
发表于 2011-10-22 12:31 |只看该作者
回复 1# yuanfaxiang1008

这样有比较容易了解...
$ awk '{FS=$2;printf "Line="NR", FS=|"FS"|, ";for(n=0;n++<NFprintf "$"n"=|"$n"|,";print ""}' a.log
Line=1, FS=|2abc|, $1=|1abc|,$2=|2abc|,
Line=2, FS=||, $1=|3abc 4abc|,
Line=3, FS=|a|, $1=|5|,$2=|a|,$3=|b|,$4=|c|,$5=| |,$6=|6|,$7=|a|,$8=|b|,$9=|c|,

论坛徽章:
0
8 [报告]
发表于 2011-10-22 14:10 |只看该作者
回复 6# mpstat


    主机名临时改的,哈哈,谢谢大神们的讲解,豁然开朗啊...
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP