extract IP address from website list

  • Thread starter Thread starter Lutrin
  • Start date Start date
Lutrin said:
Hi

I have a huge list (1000 websites) like:

www.website1.com
www.website2.com
www.website3.com

and so on...

and I must know each IP address of these websites. It's a software that
can automatize this process?

Assuming you have those ulrs in a file do in a dos widows:

FOR /F "tokens=1 " %i in (myfile.txt) do @nslookup %i

More details can be found with "help for" on the command line (win2k),

HTH

Olaf
 
Back
Top