5 lines
72 B
Bash
5 lines
72 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
CURRENT_IP=$(curl -s ifconfig.me)
|
||
|
echo $CURRENT_IP
|