1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-03-11 09:14:06 +00:00
nnn/plugins/ipinfo
2019-04-20 18:12:52 +05:30

13 lines
232 B
Bash
Executable file

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