`
ouhi2008
  • 浏览: 6904 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

AWK Tutorial

 
阅读更多

1.row/column value
$0  whole row
$1..$n  one column
awk '{print $1, $4}' netstat.txt
awk '{printf "%-8s %-8s %-8s %-18s %-22s %-15s\n",$1,$2,$3,$4,$5,$6}' netstat.txt

 

2.filter,comparison operator: ==,!=, >, <, >=, <=
awk '$3==0 && $6=="LISTEN" ' netstat.txt
awk ' $3>0 {print $0}' netstat.txt
awk '$3==0 && $6=="LISTEN" || NR==1 ' netstat.txt
awk '$3==0 && $6=="LISTEN" || NR==1 {printf "%-20s %-20s %s\n",$4,$5,$6}' netstat.txt

 

3.Built-in vars

$0 当前记录(这个变量中存放着整个行的内容)
$1,$2,...,$n 当前记录的第n个字段,字段间由FS分隔
FS 输入字段分隔符 默认是空格或Tab
RS 输入的记录分隔符, 默认为换行符
OFS 输出字段分隔符, 默认也是空格
ORS  输出的记录分隔符,默认为换行符
NF 当前记录中的字段个数,就是有多少列
NR 已经读出的记录数,就是行号,从1开始,如果有多个文件话,这个值也是不断累加中。
FNR 当前记录数,与NR不同的是,这个值会是各个文件自己的行号
FILENAME 当前输入文件的名字

awk '$3==0 && $6=="ESTABLISHED" || NR==1 {printf "%02s %s %-20s %-20s %s\n",NR, FNR, $4,$5,$6}' netstat.txt
awk 'BEGIN{FS=":"} {print $1,$3,$6}' /etc/passwd
awk -F: '{print $1,$3,$6}' /etc/passwd
awk -F '[;:]' '{print $1,$3,$6}' OFS='\t'  /etc/passwd

 

4.String matching
~ 表示模式开始。/ /中是模式。这就是一个正则表达式的匹配。需要表头NR==1
awk '$6 ~ /FIN/ || NR==1 {print NR,$4,$5,$6}' OFS="\t" netstat.txt
awk '$6 ~ /WAIT/ || NR==1 {print NR,$4,$5,$6}' OFS="\t" netstat.txt
awk '/LISTEN/' netstat.txt
awk '$6 ~ /FIN|TIME/ || NR==1 {print NR,$4,$5,$6}' OFS="\t" netstat.txt

!~ or '!/pattern/'
awk '$6 !~ /FIN|TIME/ || NR==1 {print NR,$4,$5,$6}' OFS="\t" netstat.txt
awk '!/WAIT/' netstat.txt
awk '{print NR,$0}' OFS="\t" netstat.txt
awk '/WAIT/ {print NR,$0}' OFS="\t"  netstat.txt
awk '!/WAIT/ {print NR,$0}' OFS="\t"  netstat.txt
awk '$6 !~ /WAIT/ {print NR,$0}' OFS="\t" netstat.txt

 

5.Split files
awk 'NR!=1{print > $6}' netstat.txt
awk 'NR!=1{print $4,$5 > $6}' netstat.txt
awk 'NR!=1{if($6 ~ /TIME|ESTABLISHED/) print > "1.txt"; else if($6 ~ /LISTEN/) print > "2.txt"; else print > "3.txt" }' netstat.txt

 

6.Statistic
ls -l  *.cpp *.c *.h | awk '{sum+=$5} END {print sum}'
awk 'NR!=1{a[$6]++;} END {for (i in a) print i ", " a[i];}' netstat.txt
#用户的进程的占了多少内存
ps aux | awk 'NR!=1{a[$1]+=$6;} END { for(i in a) print i ", " a[i]"KB";}'

 

7.awk scripts
BEGIN{ 这里面放的是执行前的语句 }
{这里面放的是处理每一行时要执行的语句}
END {这里面放的是处理完所有的行后要执行的语句 }

 

8.ENV vars (1.-v parameter 2. ENVIRON["KEY"] ENVIRON的环境变量需要export)

$ cat score.txt 
Marry   2143 78 84 77 
Jack    2321 66 78 45 
Tom     2122 48 77 71 
Mike    2537 87 97 95 
Bob     2415 40 57 62

 
x=5 y=10
export y
awk -v val=$x '{print $1, $2, $3, $4+val, $5+ENVIRON["y"]}' OFS="\t" score.txt

 

9.Others
#从file文件中找出长度大于80的行
awk 'length>80' file 
#按连接数查看客户端IP
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr  
#打印99乘法表  

$ seq 9 | sed 'H;g' | awk -v RS='' '{for(i=1;i<=NF;i++)printf("%dx%d=%d%s", i, NR, i*NR, i==NR?"\n":"\t")}'
1x1=1
1x2=2   2x2=4
1x3=3   2x3=6   3x3=9
1x4=4   2x4=8   3x4=12  4x4=16
1x5=5   2x5=10  3x5=15  4x5=20  5x5=25
1x6=6   2x6=12  3x6=18  4x6=24  5x6=30  6x6=36
1x7=7   2x7=14  3x7=21  4x7=28  5x7=35  6x7=42  7x7=49
1x8=8   2x8=16  3x8=24  4x8=32  5x8=40  6x8=48  7x8=56  8x8=64
1x9=9   2x9=18  3x9=27  4x9=36  5x9=45  6x9=54  7x9=63  8x9=72  9x9=81

 

Refers:

http://coolshell.cn/articles/9070.html
内建变量,参看:http://www.gnu.org/software/gawk/manual/gawk.html#Built_002din-Variables
流控方面,参看:http://www.gnu.org/software/gawk/manual/gawk.html#Statements
内建函数,参看:http://www.gnu.org/software/gawk/manual/gawk.html#Built_002din
正则表达式,参看:http://www.gnu.org/software/gawk/manual/gawk.html#Regexp

分享到:
评论

相关推荐

    awk tutorial and introduction 英文版

    **awk教程与简介** awk是一种强大的文本分析工具,广泛用于处理和解析结构化的...参考链接提供的在线教程(&lt;http://www.askapache.com/linux/awk-tutorial.html&gt;)会有更详细的实例和解释,帮助你进一步提升awk技能。

    AWK Tutorial Guide

    AWK是一种强大的文本分析工具,尤其在Linux和Unix环境中广泛使用。它被设计用来处理结构化的数据,如CSV、TSV文件或者任何包含固定格式的数据流。AWK的名字来源于它的三位创始人——Alfred Aho、Peter Weinberger和...

    Awk入门教程 《Awk A Tutorial and Introduction - by Bruce Barnett》

    Awk入门教程。作者 Bruce Barnett 注:英文版。以下是目录 Why learn AWK? Basic Structure Executing an AWK script Which shell to use with AWK? Dynamic Variables The Essential Syntax of AWK ...

    awk使用详解(官方文档翻译)

    ### AWK 使用详解知识点 #### 一、AWK 概述与适用场景 - **AWK 的定位**:AWK 是一种专为文本处理设计的脚本语言,它结合了强大的文本处理能力和易于上手的特点,非常适合用于数据分析、报告生成等应用场景。 - **...

    Awk - A Tutorial and Introduction - by Bruce Barnett.pdf

    Awk is an extremely versatile programming language for working on files. We'll teach you just enough to understand the examples in this page, plus a smidgen. The examples given below have the ...

    sed-awk-2nd-edition.chm

    The book begins with an overview and a tutorial that demonstrate a progression in functionality from grep to sed to awk. sed and awk share a similar command-line syntax, accepting user instructions in...

    A Basic UNIX Tutorial

    - **高级命令**:grep、awk、sed等用于文本处理和数据过滤。 #### 五、文件和目录管理 - **创建文件和目录**:使用touch、mkdir等命令。 - **文件操作**:移动、复制、删除文件使用mv、cp、rm等命令。 - **查看...

    PostgreSQL Tutorial (html)

    总的来说,"PostgreSQL Tutorial (html)"将引导你走过PostgreSQL的世界,结合Linux shell和`awk`,你将具备在实际环境中管理和操作数据库的能力。无论是为了个人项目还是职业发展,掌握PostgreSQL都将对你的IT事业...

    linux shell programming tutorial

    - **文本处理**:`grep`(搜索字符串)、`sed`(流编辑器)、`awk`(强大的文本处理工具)等。 - **系统管理**:`ps`(显示进程状态)、`kill`(终止进程)、`top`(显示系统负载和进程状态)等。 #### 进程管理 - ...

    Unix Tutorial

    【Unix教程】是针对计算机操作系统领域的一门重要课程,...记得在学习过程中,亲自动手实践,结合README.md中的指引和Unix Tutorial - TsingHua.rar中的资料,将理论知识转化为实际技能。祝你在Unix的世界里探索愉快!

    Sed Tutorial

    `sed` 本身没有内置的行计数功能,但可以结合其他工具如 `awk` 或 `wc` 来实现这一目的。 **示例**: 使用 `sed` 和 `wc` 来计算文件行数。 ```shell $ sed 'p' thegeekstuff.txt | wc -l 7 ``` 这里,`sed 'p'` ...

Global site tag (gtag.js) - Google Analytics