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
| 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> |
OlderNewer