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

发布时间:2020-01-27编辑:脚本学堂
如何用shell脚本获取当前电脑IP地址呢?可以用ifconfig命令,结合grep与awk命令从结果中取得IP地址,需要的朋友参考下。

一例shell/ target=_blank class=infotextkey>shell脚本,根据不同的IP地址做出不同的操作,需要在shell脚本里获取当前主机的ip地址

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

方法1:
 

ifconfig |grep 'inet 地址'|grep '192.168.1' | grep -v 'grep' | linuxjishu/13830.html target=_blank class=infotextkey>awk '{print $2}'| tr -d "地址:" 

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