> I want to extract all links on a web site to a text
> file.
> <http://hd-video-music-1080i.blogspot.com/>
First do you mean actual links or the text containing urls (rapidshare...rar)
I would simply scan the mirrored html files
findstr /i "href=" > file.txt
or
findstr /i "http:" > file.txt
and edit. |