087b39decd
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1m36s
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
11 lines
182 B
Bash
Executable file
11 lines
182 B
Bash
Executable file
#!/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
|