Skip to content

Instantly share code, notes, and snippets.

@ljstella
Last active May 16, 2023 04:19
Show Gist options
  • Save ljstella/a20980946114b8a2b68d7a3ddad11fae to your computer and use it in GitHub Desktop.
Save ljstella/a20980946114b8a2b68d7a3ddad11fae to your computer and use it in GitHub Desktop.
Short script to query authoritative name servers for _atproto TXT record
#!/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