5 lines
168 B
Bash
5 lines
168 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# scripts/manual/vpn-test.sh
|
||
|
|
|
||
|
|
set -x IP $(curl -s https://api.ipify.org) && echo $IP && curl http://ip-api.com/json/$IP?fields=country,city,lat,lon
|