首页 > 代码库 > linux正则表达式之取ip
linux正则表达式之取ip
使用ifconfig取出网卡eth0的ip地址
方法1:sed
[root@ZHOUQIZHONG ~]# ifconfig eth0 |sed -nr‘2s#.*dr:|Bca.*##gp‘
10.0.0.200
[root@ZHOUQIZHONG ~]#
方法2:sed
[root@ZHOUQIZHONG ~]# ifconfig eth0 |sed -nr‘2s#.*dr:(.*)Bca.*#\1#gp‘
10.0.0.200
[root@ZHOUQIZHONG ~]#
方法3:sed+cut
[root@ZHOUQIZHONG ~]# ifconfig eth0 |sed -n‘2p‘|cut -d ‘:‘ -f2 |cut -d ‘ ‘ -f1
10.0.0.200
[root@ZHOUQIZHONG ~]#
方法4:awk
[root@ZHOUQIZHONG ~]# ifconfig eth0 |awk -F ‘[: ]+‘‘NR==2{print $4}‘
10.0.0.200
[root@ZHOUQIZHONG ~]#
方法5:awk
[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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。