使用ifconfig取出网卡eth0的ip地址-看看你有多少方法 ?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ifconfig取出网卡eth0的ip地址-看看你有多少方法 ?相关的知识,希望对你有一定的参考价值。
方法1:awk使用两遍
[[email protected] ~]# ifconfig eth0|awk ‘NR==2 {print $2}‘|awk -F ":" ‘{print $2}‘ 10.0.0.5
方法2:hostname命令
[[email protected] ~]# hostname -I 10.0.0.5
方法3:cut命令
[[email protected] ~]# ifconfig eth0|grep ‘inet addr‘|cut -d ":" -f2|cut -d " " -f1 10.0.0.5
方法4:sed命令
[[email protected] ~]# ifconfig eth0|sed -n ‘2p‘|sed ‘s#^.*addr:##g‘|sed ‘s# B.*$##g‘ 10.0.0.5
方法5:awk多分割符
[[email protected] ~]# ifconfig eth0|awk "NR==2"|awk -F ‘[ :]‘ ‘{print $13}‘ 10.0.0.5 [[email protected] ~]# ifconfig eth0|sed -n ‘2p‘|awk -F ‘[ :]+‘ ‘{print $4}‘ 10.0.0.5 [[email protected] ~]# ifconfig eth0 |awk -F‘[ :]+‘ ‘NR==2 {print $4}‘ 10.0.0.5
方法6:sed(正则)
[[email protected] ~]# ifconfig eth0|sed -nr ‘2s#^.*dr:(.*) B.*$#\1#gp‘ 10.0.0.5
方法:7:grep-perl正则方法
[[email protected] ~]# ifconfig eth0|grep -Po ‘(?<=dr:)[0-9.]+‘ 10.0.0.5
本文出自 “花开如昔” 博客,请务必保留此出处http://sunrisenan.blog.51cto.com/10217407/1944847
以上是关于使用ifconfig取出网卡eth0的ip地址-看看你有多少方法 ?的主要内容,如果未能解决你的问题,请参考以下文章
Linux中要禁用网卡是:ifconfig eth0 down,那我使用:ifconfig ip地址 down可以吗?