awk入门及进阶
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了awk入门及进阶相关的知识,希望对你有一定的参考价值。
awk入门及进阶 :文本处理三剑客 : grep sed awk
grep : 文本过滤器
grep ‘pattern‘ input_file ...
sed : 流编辑器
awk :报告生成器 格式化以后,显示
gawk
nawk new awk
awk用法 :
awk [options] ‘script‘ file1 file2,...
awk [options] ‘PATTERN action‘ file1,file2,...
action : print,printf
awk ‘print $1,$2‘ test.txt
awk ‘BEGINOFS="#" print $1,$2‘ test.txt
以上是关于awk入门及进阶的主要内容,如果未能解决你的问题,请参考以下文章