标签:获取ip 方法
ifconfig eth1 |sed -n ‘s#^.*addr:\(.*\) Bcast:.*$#\1#gp‘
s#word1 #word2 #g word2内容代替word1内容 p 打印 \1代替前面的括号
ifconfig eth1 |grep "inet addr"|cut -d ":" -f2|cut -d " " -f1
cut -d 自定义分隔符 -f2 域2 -f1 域1
ifconfig eth1 |grep "inet addr" |awk -F "[: ]+" ‘{print $4 }‘
: 或空格 +连续的,空格 空格 inet addr: 172.16.1.101 所以IP为区域4
本文出自 “linux常用命令总结” 博客,请务必保留此出处http://3146456.blog.51cto.com/3136456/1826826
标签:获取ip 方法
原文地址:http://3146456.blog.51cto.com/3136456/1826826