mirror of
https://github.com/jarun/nnn.git
synced 2024-11-16 16:13:16 +00:00
14 lines
214 B
Plaintext
14 lines
214 B
Plaintext
|
#!/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
|