aboutsummaryrefslogtreecommitdiffstats
path: root/cli/get-ip.sh
blob: 3bfc660a5e62f240abfde126c9ae25cca17fb32a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
#
# Get the public IPv4 address.
#
# Credit:
# * http://ifconfig.me/
# * http://ipecho.net/
#
# Aaron LI
# 2017-08-31
# MIT license
#

URL="http://ifconfig.me"
URL="http://ipecho.net/plain"

ip=$(curl -s ${URL})
echo ${ip}