需求
shell脚本里我需要根据不同的ip地址做出不同的操作,因此我需要在shell脚本里获取当前主机的ip地址
我需要获取到192.168.1.111这个ip地址
方法1
ifconfig |grep 'inet 地址'|grep '192.168.1' | grep -v 'grep' | awk '{print $2}'| tr -d "地址:"
效果
Shell命令读取IP地址:http://www.linuxdiyf.com/linux/803.html
在Linux下获取全国各地IP地址段方法:http://www.linuxdiyf.com/linux/7802.html