awk - 数据提取和报告工具 (4) 实战

  • 原创
  • Madman
  • /
  • /
  • 0
  • 7715 次阅读

awk - 数据提取和报告工具 (4) 实战-min.png

Synopsis: awk通常用作数据提取和报告工具,例如生成格式化报告。awk语言广泛使用字符串数据类型,关联数组(即按键字符串索引的数组)和正则表达式。程序由一系列规则rule组成(程序也可能包含用户自定义的函数), 每个规则指定一个要搜索的模式pattern和匹配到模式后的动作action,模式和动作至少要指定一个。如果省略pattern,则action将应用于每一条记录(通常是每一行);如果省略action,默认是{ print $0 }将当前记录整体打印输出

awk系列:


1. 打印指定列

1. 默认以空白字符为字段的分隔符
# awk '{ print $1 }' /etc/passwd | head -n 3
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin

2. 指定FS
# awk -F: '{ print $1 }' /etc/passwd | head -n 3
root
bin
daemon

2. 格式化输出

分类: Linux
标签: awk gawk GNU
  • You've gained entry to a covert hoard ct731714.tw1.ru la
  • Receive a Custom Incentive ct731714.tw1.ru Os
  • Hurry Secure your cash bonus iuhilhifhd.temp.swtest.ru pp
  • This reward is customized for you cu673950.tw1.ru 9T
  • Get Fast Supplemental Income ct731714.tw1.ru Ib
  • Get Rewarded for Every New Skill You Learn ct731714.tw1.ru Vx
  • Your efforts earned you this easy money cu673950.tw1.ru wF
  • Claim your large cash bonus today cu673950.tw1.ru eL
  • Comment and secure a cash prize ct731714.tw1.ru Tb
  • Get Money Sent Right to Your Account cu673950.tw1.ru CF
  • Participate in the giveaway for cash ct731714.tw1.ru Ck
  • Make Income from Just Living iuhilhifhd.temp.swtest.ru Ot
  • Link up and we'll add a cash bonus cu673950.tw1.ru oL
  • The Key to Your Bonus Cash is Here cu673950.tw1.ru mW
  • Participate to claim your bonus iuhilhifhd.temp.swtest.ru Sw
  • Money for watching It's that easy ct731714.tw1.ru je
  • Your Financial Gift Awaits   Take It ct731714.tw1.ru LK
  • Instant cash can be yours today iuhilhifhd.temp.swtest.ru r7
  • ktsdgtsyqf
  • Mark the holiday with a special cash present ct731714.tw1.ru Xv
  • Simple Like  Money reward cu673950.tw1.ru O4
  • vuevmuwtxo
  • krlsxkvvso
  • trgvzrisiz
未经允许不得转载: LIFE & SHARE - 王颜公子 » awk - 数据提取和报告工具 (4) 实战

分享

作者

作者头像

Madman

如需 Linux / Python 相关问题付费解答,请按如下方式联系我

0 条评论

暂时还没有评论.

专题系列