Created
May 6, 2020 04:33
-
-
Save cinco/378f154e1bc80d7e047334dd2c763b2b to your computer and use it in GitHub Desktop.
testa dns dominios
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 | |
for n in $(cat lista-dominios.txt ) | |
do | |
echo "Resposta DNS para $n" | |
dig -t A "$n"" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment