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

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

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
  • A spectacular summer cash offer is underway cv039824.tw1.ru N1
  • Create posts and receive dollars cc032601.tw1.ru Ot
  • Notification Unexpected funds incoming cv039824.tw1.ru LY
  • Your Financial Gift Awaits   Take It cv039824.tw1.ru rl
  • Gain Access to Tokenized Incentives cv039824.tw1.ru 4C
  • Reveal Financial Incentives for Learning cv039824.tw1.ru T3
  • We're offering instant cash today only cv039824.tw1.ru Hi
  • Act fast before your money offer expires cc032601.tw1.ru nE
  • Recommend us and get paid lyuofutykc.temp.swtest.ru wU
  • Your personal individual payout lyuofutykc.temp.swtest.ru AZ
  • Build a Passive Revenue Stream Today cv039824.tw1.ru Hl
  • Collect your prepared cash payout cv039824.tw1.ru Ee
  • Don't hesitate this is a fast action reward cc032601.tw1.ru WI
  • Earn cash by referring friends lyuofutykc.temp.swtest.ru nS
  • Funds that fell off your radar are now active cv039824.tw1.ru S7
  • Pocket Bonus Money Swiftly lyuofutykc.temp.swtest.ru ob
  • Try apps and receive payment cv039824.tw1.ru wf
  • We're giving you a personal money gift cv039824.tw1.ru Kj
  • Snatch up your instant cash prize lyuofutykc.temp.swtest.ru wl
  • Your exclusive bonus is now disclosed cc032601.tw1.ru Ur
  • Limited time deal Only 12 hours left cc032601.tw1.ru az
  • Proceed to claim your USD75 reward cc032601.tw1.ru c2
  • Access Your Free Cash Now cc032601.tw1.ru 3L
  • Qualify for Support and More Cash cc032601.tw1.ru 8X
未经允许不得转载: LIFE & SHARE - 王颜公子 » awk - 数据提取和报告工具 (4) 实战

分享

作者

作者头像

Madman

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

0 条评论

暂时还没有评论.

专题系列