linux正则表达式之取ip
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux正则表达式之取ip相关的知识,希望对你有一定的参考价值。
使用ifconfig取出网卡eth0的ip地址
方法1:sed
[[email protected] ~]# ifconfig eth0 |sed -nr‘2s#.*dr:|Bca.*##gp‘
10.0.0.200
[[email protected] ~]#
方法2:sed
[[email protected] ~]# ifconfig eth0 |sed -nr‘2s#.*dr:(.*)Bca.*#\1#gp‘
10.0.0.200
[[email protected] ~]#
方法3:sed+cut
[[email protected] ~]# ifconfig eth0 |sed -n‘2p‘|cut -d ‘:‘ -f2 |cut -d ‘ ‘ -f1
10.0.0.200
[[email protected] ~]#
方法4:awk
[[email protected] ~]# ifconfig eth0 |awk -F ‘[: ]+‘‘NR==2{print $4}‘
10.0.0.200
[[email protected] ~]#
方法5:awk
[[email protected] ~]# ifconfig eth0 |awk -F‘addr:|Bcast:‘ ‘NR==2{print $2}‘
10.0.0.200
[[email protected] ~]#
......
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<一天变一个样
本文出自 “qizhong” 博客,请务必保留此出处http://qizhong.blog.51cto.com/12933988/1953680
以上是关于linux正则表达式之取ip的主要内容,如果未能解决你的问题,请参考以下文章
如何在 linux shell 中使用正则表达式从文件中提取 IP 地址?