| On Windows...
If you just want the pages and nothing else...from a DOS prompt type...
for /L %a in (1,1,5) do "C:\Program Files\WinHTTrack\httrack.exe" --get
<http://forum.xda-developers.com/showthread.php?t=389106^&page=%a> -O1
"J:\Temporary\Download"
Change the J:\Temporary\Download to where you wish to put them.
That will retrieve the first 5 pages. If you want all 501, just change the
(1,1,5) to (1,1,501) and it'll grab them all. Just html, no fuss, no muss.
Note the ^&page the ^ is a DOS escape character to make the command
interpreter pass the url correctly. This downloads all 5 pages in about 5 to
10 seconds, depending on your connection.
> | |