| hexview | sh | xxd, `$PAGER` | View a file in hex |
| imgresize | sh | [imgp](https://github.com/jarun/imgp) | Resize images in directory to screen resolution |
| imgur | bash | - | Upload an image to imgur (from [imgur-screenshot](https://github.com/jomo/imgur-screenshot)) |
-| ipinfo | sh | curl, whois | Fetch IP address and whois information |
+| ipinfo | sh | curl, whois | Fetch external IP address and whois information |
| kdeconnect | sh | kdeconnect-cli | Send selected files to an Android device |
| ndiff | sh | vimdiff | Show diff for selection |
| nmount | sh | pmount | Toggle mount status of a device as normal user |
#!/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
IP=`curl -s ifconfig.me`
whois "$IP"
-echo your IP address is "$IP"
+echo your external IP address is "$IP"
read dummy