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

linux正则表达式之取ip

时间:2017-08-04 22:50:58      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:学习   linux   

使用ifconfig取出网卡eth0ip地址

方法1sed

[root@ZHOUQIZHONG ~]# ifconfig eth0 |sed -nr‘2s#.*dr:|Bca.*##gp‘

10.0.0.200 

[root@ZHOUQIZHONG ~]#

方法2sed

[root@ZHOUQIZHONG ~]# ifconfig eth0 |sed -nr‘2s#.*dr:(.*)Bca.*#\1#gp‘

10.0.0.200 

[root@ZHOUQIZHONG ~]#

方法3sed+cut

[root@ZHOUQIZHONG ~]# ifconfig eth0 |sed -n‘2p‘|cut -d ‘:‘ -f2 |cut -d ‘ ‘ -f1

10.0.0.200

[root@ZHOUQIZHONG ~]#

方法4awk

[root@ZHOUQIZHONG ~]# ifconfig eth0 |awk -F ‘[: ]+‘‘NR==2{print $4}‘

10.0.0.200

[root@ZHOUQIZHONG ~]#

方法5awk

[root@ZHOUQIZHONG ~]# ifconfig eth0 |awk -F‘addr:|Bcast:‘ ‘NR==2{print $2}‘

10.0.0.200 

[root@ZHOUQIZHONG ~]#

......

<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<一天变一个样

本文出自 “qizhong” 博客,请务必保留此出处http://qizhong.blog.51cto.com/12933988/1953680

linux正则表达式之取ip

标签:学习   linux   

原文地址:http://qizhong.blog.51cto.com/12933988/1953680

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