-
-
Save ljstella/a20980946114b8a2b68d7a3ddad11fae to your computer and use it in GitHub Desktop.
Short script to query authoritative name servers for _atproto TXT record
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 ns in $(dig +short magsvisaggio.com ns); do | |
dig @$ns +short -t TXT _atproto.magsvisaggio.com; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment