欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux命令行取出网卡ip地址

程序员文章站 2022-06-03 10:06:43
...

Linux命令行取出网卡IP地址

方法1:awk命令

[[email protected] ~]# ifconfig eth0 |awk -F '[ :]+' 'NR==2{print $4}'
10.0.0.200

方法2:sed命令

[[email protected] ~]# ifconfig eth0 |sed -rn '2s#^.*dr:(.*)  Bc.*$#\1#gp'
10.0.0.200

方法3:egrep命令

[[email protected] ~]# ifconfig eth0 |egrep -o '^.*dr:[0-9.]+' |egrep -o '[0-9.]+'
10.0.0.200
相关标签: linux