当前位置: > shell编程 >

shell脚本获取当前ip地址的方法

时间:2014-11-23 13:39来源:linux.it.net.cn 作者:IT



一例shell脚本,根据不同的ip地址做出不同的操作,需要在shell脚本里获取当前主机的ip地址

例如,获取ip地址:192.168.1.111。
shell脚本获取当前ip地址

方法1:
 

ifconfig |grep 'inet 地址'|grep '192.168.1' | grep -v 'grep' | awk '{print $2}'| tr -d "地址:" 

 效果,如下:
shell脚本获取当前IP地址2

 
(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容