码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 之 awk处理字符串

时间:2018-05-08 14:47:56      阅读:364      评论:0      收藏:0      [点我收藏+]

标签:awk

awk处理字符串
文本内容:I am Kang,my qq is 345678
目的:只显示Kang 345678

方法1:
[root@localhost kang]# awk ‘{print $3,$NF}‘ test.txt 
kang,my 4567864
[root@localhost kang]# awk ‘{print $3,$NF}‘ test.txt | sed ‘s#,my##g‘
kang 4567864

方法2:
[root@localhost kang]# awk -F ‘[ ,]‘ ‘{print $3,$NF}‘ test.txt 
kang 4567864

Linux 之 awk处理字符串

标签:awk

原文地址:http://blog.51cto.com/12965094/2113930

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!