Java教程

shell获取公网IP

本文主要是介绍shell获取公网IP,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

curl -s http://www.net.cn/static/customercare/yourip.asp |grep -P -o "[0-9.]+(?=</h2>)"

curl -s 隐藏下载进度
grep

  • -P 开启断言模式
  • -o 只显示匹配部分,不显示匹配到的整行

罗里吧嗦的版本
curl -s http://www.net.cn/static/customercare/yourip.asp |grep "</h2>" |cut -f2 -d '>' |cut -f1 -d '<'

这篇关于shell获取公网IP的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!