aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/ipinfo
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ipinfo')
-rwxr-xr-xplugins/ipinfo4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ipinfo b/plugins/ipinfo
index b743df8..70b8007 100755
--- a/plugins/ipinfo
+++ b/plugins/ipinfo
@@ -1,6 +1,6 @@
#!/usr/bin/env sh
-# Description: Shows the IP address and whois information. Useful over VPNs.
+# Description: Shows the external IP address and whois information. Useful over VPNs.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
@@ -8,6 +8,6 @@
IP=`curl -s ifconfig.me`
whois "$IP"
-echo your IP address is "$IP"
+echo your external IP address is "$IP"
read dummy