cmd/dns.py

6 lines
94 B
Python

import socket
import sys
domain = sys.argv[1]
print(socket.getaddrinfo(domain, 53)[0][4][0])