I get whois information for a bunch of URLs by wget the following address
wget -qO- https://www.whois.com/whois/SampleDomain
At the first phase I wanna not creating a file for each URL, so I use -qO- option.
I want to extract 10 field of every domain (such as, Creation Date, Registrant Name)
My question is: How can I get make a csv file which every row define the domain and each column has the value of the whois information?