Created
October 28, 2012 17:14
-
-
Save ysawa/3969177 to your computer and use it in GitHub Desktop.
Check if a new domain name is available.
This file contains 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 | |
# Name: Check for domain name availability | |
# linuxconfig.org | |
# Please copy, share, redistribute and improve | |
if [ "$#" == "0" ]; then | |
echo "You need tu supply at least one argument!" | |
exit 1 | |
fi | |
DOMAINS=( \ | |
'.com' '.jp' '.co.jp' '.net' '.info' '.mobi' '.org' '.tel' '.biz' '.tv' '.cc' '.in' ) | |
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 Fou|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