shell一键查询公网IP地址
shell一键查询公网IP地址。命令如下
curl -s http://myip.ipip.net
也可以直接写成shell脚本
1
2
3
4
#!/bin/bash
ip=$(curl -s http://myip.ipip.net)
echo "My public IP address is: $ip"
下面是常有的IP公网地址查询地址。
curl http://icanhazip.com
curl http://ifconfig.me
curl http://curlmyip.com
curl http://ipinfo.io/ip
💘 相关文章
- shell彩色终端的实现方法
- Configure nginx to only allow cloudflare's IP to connect to the server shell script
- 通过web获取客户端的内网ip地址
- 关于群晖docker注册表查询失败的解放方法
- shellcheck 幫助新手的你寫出更好的shell腳本
- shell清空檔案文件所有字符的多種方法
- Shell Script Batch Generate Continuous Numbers
- mac os brew "shell-init: error retrieving current directory"的解决方法
- shell脚本批量生成连续数字
- 快速简单一键搭建nginx quic的环境