Linux 查看外网ip
1.外网 IP , 也就外部网络能访问到的实际机器地址.
curl icanhazip.com
curl http://pv.sohu.com/cityjson 2>> /dev/null | awk -F ' " '{print $4}
(经测试 , 腾讯云主机也是可以查看外网 IP 的)
2.想要把 IP 赋值给变量
a=`curl http://pv.sohu.com/cityjson 2>> /dev/null | awk -F '"' '{print $4}'`
echo $a
这样就相当于把 IP地址 譬如 100.22.11.8 赋值给 String a 对象