Created
March 13, 2017 05:38
-
-
Save tonkla/20d08496bba238b2b66afd63b2a8a301 to your computer and use it in GitHub Desktop.
Batch WHOIS lookup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$#" == "0" ]; then | |
echo "You need to supply at least one argument!" | |
exit 1 | |
fi | |
DOMAINS=('.com' '.net' '.org') | |
ELEMENTS=${#DOMAINS[@]} | |
while (( "$#" )); do | |
for (( i=0; i<$ELEMENTS; i++ )); do | |
whois $1${DOMAINS[${i}]} | egrep -q \ | |
'^No match|^NOT FOUND|^Not fo|AVAILABLE|^No Data For|has not been regi|No entri' | |
if [ $? -eq 0 ]; then | |
echo "$1${DOMAINS[${i}]} : available" | |
fi | |
done | |
shift | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment