#!/bin/bash

echo "0IP IP CHECKER"
echo "CHECKING IP..."
echo "ifconfig.me:"
curl -s ifconfig.me
echo
echo "ifcfg.me:"
curl -s ifcfg.me
echo
echo "icanhazip.com:"
curl -s icanhazip.com
echo "checkip.dyndns.org:"
curl -s checkip.dyndns.org | sed 's/[a-zA-Z<>/ :]//g'
echo "DONE."
read -n1

