Lookup details of an IP or Domain (whois lookup) graphically
By using the following script you can easily lookup for an ip or domain using zenity and shell script. (sorry Windows folks, i just hate you).
#!/bin/bash
# Get the domain name
Z=”/usr/bin/zenity”
O=”/tmp/whois.o.$$”
domain=$(${Z} –title “Domain Information” \
–entry –text “Domain name who’s information you seek!” )
then
whois $domain | tee >${O}
# Display back output
${Z} –width=800 –height=600 \
–title “Whois info for $domain” \
–text-info –filename=”${O}”
else
${Z} –error \
–text=”No input provided”
fi
Enjoy.
Advertisement
Joice312 12:14 pm on May 26, 2010 Permalink |
Am new here, discovered this site by searching google and really like it here, will enjoy my stay for sure hehe
LxC Whois 10:06 pm on December 3, 2010 Permalink |
Hello,
Check it out free PHP Whois Domain lookup
Let me know if you like it.
Thanks.