码迷,mamicode.com
首页 > 其他好文 > 详细

使用ifconfig取出网卡eth0的ip地址-看看你有多少方法 ?

时间:2017-07-05 21:06:32      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:取ip地址

方法1:awk使用两遍

[root@oldboy ~]# ifconfig eth0|awk ‘NR==2 {print $2}‘|awk -F ":" ‘{print $2}‘
10.0.0.5

方法2:hostname命令

[root@oldboy ~]# hostname -I
10.0.0.5

方法3:cut命令

[root@oldboy ~]# ifconfig eth0|grep ‘inet addr‘|cut -d ":" -f2|cut -d " " -f1
10.0.0.5

方法4:sed命令

[root@oldboy ~]# ifconfig eth0|sed -n ‘2p‘|sed ‘s#^.*addr:##g‘|sed ‘s#  B.*$##g‘
10.0.0.5

方法5:awk多分割符

[root@oldboy ~]# ifconfig eth0|awk "NR==2"|awk -F ‘[ :]‘ ‘{print $13}‘
10.0.0.5

[root@oldboy ~]# ifconfig eth0|sed -n ‘2p‘|awk -F ‘[ :]+‘ ‘{print $4}‘
10.0.0.5

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

方法6:sed(正则)

[root@oldboy ~]# ifconfig eth0|sed -nr ‘2s#^.*dr:(.*) B.*$#\1#gp‘
10.0.0.5

方法:7:grep-perl正则方法

[root@oldboy ~]# ifconfig eth0|grep -Po ‘(?<=dr:)[0-9.]+‘
10.0.0.5

本文出自 “花开如昔” 博客,请务必保留此出处http://sunrisenan.blog.51cto.com/10217407/1944847

使用ifconfig取出网卡eth0的ip地址-看看你有多少方法 ?

标签:取ip地址

原文地址:http://sunrisenan.blog.51cto.com/10217407/1944847

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