首页 > 其他 > 详细

awk入门及进阶

时间:2019-08-07 18:06:52      阅读:69      评论:0      收藏:0      [点我收藏+]
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 ‘BEGIN{OFS="#"} {print $1,$2}‘ test.txt
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片
技术分享图片

awk入门及进阶

原文:https://blog.51cto.com/14087650/2427483

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!