Linux 之 awk处理字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 之 awk处理字符串相关的知识,希望对你有一定的参考价值。
awk处理字符串
文本内容:I am Kang,my qq is 345678
目的:只显示Kang 345678
方法1:
[[email protected] kang]# awk ‘{print $3,$NF}‘ test.txt
kang,my 4567864
[[email protected] kang]# awk ‘{print $3,$NF}‘ test.txt | sed ‘s#,my##g‘
kang 4567864
方法2:
[[email protected] kang]# awk -F ‘[ ,]‘ ‘{print $3,$NF}‘ test.txt
kang 4567864
以上是关于Linux 之 awk处理字符串的主要内容,如果未能解决你的问题,请参考以下文章