#!/bin/zsh for letter in {a..z} {0..9}; do while read tld; do domain=$letter.$tld echo Checking $domain ... whois $domain sleep 3 done done