在网络畅通时打印 IP 地址的 shell 脚本
时间: 2024-03-05 19:55:07 浏览: 130
Shell脚本实现检测某ip网络畅通情况(含短信报警功能)
可以使用以下的 shell 脚本来打印 IP 地址:
```
#!/bin/bash
# 获取 IP 地址
ipaddress=$(curl -s ifconfig.me)
# 打印 IP 地址
echo "My public IP address is: $ipaddress"
```
这个脚本使用 curl 命令从 ifconfig.me 获取当前机器的公共 IP 地址,并将其保存在 `ipaddress` 变量中。然后,它使用 echo 命令将 IP 地址打印到终端中。
阅读全文