I need to check the availability of all short domains that contain a word "hello". It can be anything like "hellohi", "aahellokk" or "hellowhello". I know that there are services, like http://www.bluehost.com/cgi-bin/signup, where you need to type the domains one-by-one. However, I want to bulk-check them. Then, I need to generate a list of words. I mistakenly tested in Zsh:
echo {1..10}hello{A..Z}{5} > test
I don't know what is the easiest way to generate the list of words. How would you check the availability?