首页 > 代码库 > 使用ifconfig取出网卡eth0的ip地址-看看你有多少方法 ?
使用ifconfig取出网卡eth0的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地址-看看你有多少方法 ?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。