Files
sysconfig/myip.sh
2026-03-07 15:11:16 +08:00

9 lines
213 B
Bash
Executable File

if [ "$(uname)" = "Darwin" ]; then
echo Local IP: $(ifconfig en0 | grep "inet " | awk '{print $2}')
else
echo Local IP: $(echo `hostname -I` | awk '{print $1;}')
fi
echo Public IP: `curl -s ifconfig.me`
echo