Quick bash script for obtaining the nameservers for a list of domain names

#!/bin/bash

for domain in $(cat guru.txt); do
	echo "nameservers for $domain:"
	dig +short NS $domain
done