nnn/plugins/ipinfo
2019-04-20 13:07:04 +05:30

14 lines
214 B
Bash
Executable file

#!/usr/bin/env sh
# Description: Shows the IP address and whois information.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
IP=`curl -s ifconfig.me`
whois "$IP"
echo your IP address is "$IP"
read dummy