escapes bash variable

This commit is contained in:
Hyatt 2022-03-28 11:58:47 -05:00
parent f695c43311
commit 427774a7d1
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -18,7 +18,7 @@ getPublicIP() {
# curl lookups
for i in "https://icanhazip.com" "https://ifconfig.me" "https://api.ipify.org" "https://bot.whatismyipaddress.com" "https://ipinfo.io/ip" "https://ipecho.net/plain"; do
ip=\$(curl -s "${i}")
ip=\$(curl -s "\${i}")
if [ "\${ip}" != "" ]; then
printf '%s' "\${ip}"
return 0