使用ifconfig取出网卡eth0的ip地址
方法1:sed
[[email protected] ~]# ifconfig eth0 |sed -nr‘2s#.*dr:|Bca.*##gp‘
10.0.0.200
[[email protected] ~]#
方法2:sed
[[email protected] ~]# ifconfig eth0 |sed -nr‘2s#.*dr:(.*)Bca.*#\1#gp‘
10.0.0.200
[[email protected] ~]#
方法3:sed+cut
[[email protected] ~]# ifconfig eth0 |sed -n‘2p‘|cut -d ‘:‘ -f2 |cut -d ‘ ‘ -f1
10.0.0.200
[[email protected] ~]#
方法4:awk
[[email protected] ~]# ifconfig eth0 |awk -F ‘[: ]+‘‘NR==2{print $4}‘
10.0.0.200
[[email protected] ~]#
方法5:awk
[[email protected] ~]# ifconfig eth0 |awk -F‘addr:|Bcast:‘ ‘NR==2{print $2}‘
10.0.0.200
[[email protected] ~]#
......
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<一天变一个样
时间: 2024-10-10 19:27:57