9 lines
136 B
Text
9 lines
136 B
Text
|
#!/usr/bin/env zsh
|
||
|
|
||
|
echo -n 'IPv4: '
|
||
|
curl -4 https://ip.w9r.de/getip.php
|
||
|
echo
|
||
|
echo -n 'IPv6: '
|
||
|
curl -6 https://ip.w9r.de/getip.php
|
||
|
echo
|