Here is a quick and dirty bash script that I authored to check to see if a host is online. This was tested using Ubuntu.
for word in $(cat domains.txt); do host $word; done > output.txt
This is assuming you have changed directories to the directory where the domains.txt file is located.
The point of this script is if you have large quantity of domains that you need to verify if they are online (active threat) and don't have the want or time to check each of them manually.
Please be advised that if you're editing in a Windows environment, the default line breaks are \r\n (carriage return and new line).
Linux environments only use \n (new line) and having \r (carriage returns) in your document will cause for this script to break.
Feel free to remove these carriage returns in an app like Notepad++.
Example of domains:
You can press Ctrl + H (or Search... > Replace). That will open this menu:
Replace all "\r" with "" (null) [ensure that Extended is selected]
The command should work fine in your bash terminal.
Example of output (viewing in vi):