This commit is contained in:
Hydroxycarbamide 2024-07-29 21:16:45 +02:00
parent 0ef5de12ac
commit c0889285ff
58 changed files with 5175 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#!/usr/bin/env sh
# 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 external IP address is "$IP"
read -r _