Last active
January 3, 2016 14:39
-
-
Save mannieschumpert/8477368 to your computer and use it in GitHub Desktop.
Domain propagation auto-checking. Checks IP of a domain every ten minutes.
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
while : | |
do | |
nslookup domain.com | |
sleep 600 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To Do: explore the possibility of checking the result against the desired result and echoing a notification when true.