Created
December 27, 2020 03:31
-
-
Save MinaMikhailcom/9eddb3a55335e19905443d4c17e4fdfb to your computer and use it in GitHub Desktop.
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
for i in domain1.com domain2.com domain3.com domain4.com domainXetc.com; do echo $i : $(dig NS $i +short); done | |
OR: | |
for i in `cat domainslist.txt`; do dig ns $i; done | |
<Domain list created in "domainslist.txt" file) | |
<Change Record type from NS to any other> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment