View Single Post
Old 29-03-07, 11:48 AM   #2
Baph
Guest
 
Posts: n/a
Default Re: Windows script help

First, get this.

Code:
 
Set /P XURL=Enter URL^>
:do
.... call wget with correct parameters....XURL variable holds the URL to fetch
Set /P XURL=Enter URL[Hit ENTER to terminate]^>
if %XURL%=="" goto end
goto do
 
:end
echo Done.
  Reply With Quote